ドキュメント クラス「book」の「セクション」および「方程式」カウンターの形式を変更する

ドキュメント クラス「book」の「セクション」および「方程式」カウンターの形式を変更する

私はドキュメントクラス「book」を使用しています。次のコードを使用しています

\documentclass{book}
\usepackage{amsmath, amsthm, amssymb, amsfonts}
\theoremstyle{definition}
\newtheorem{definition}{Def{i}nition}[section]
\newtheorem{lemma}{Lemma}[section]
\newtheorem{proposition}[definition]{Proposition}
\begin{document}
\mainmatter
\chapter{Quadratic Equation}
\section{Introduction}
\begin{definition}
\quad An equation $ax^2 + bx + c = 0,\ a\neq 0,\ a,\ b,\ c \in     \mathbb{R}$ is a called \textbf{quadratic equation}. The values of $x$ which satisfies it, is called its \textbf{roots}.
\end{definition}
\begin{proposition}
\quad Roots of the quadratic $ax^2 + bx + c = 0,\ (a\neq 0,\ a,\ b,\ c \in \mathbb{R}$) are given by\\
\begin{align}
    x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}
\end{align}
\end{proposition}
\end{document}

セクション番号を「1.1」ではなく「1」にし、方程式番号も「1.1」ではなく「1」にします。また、定義と命題の番号は 1.1 と 1.2 にする必要があります。

この効果を得るためにいろいろ試しましたが、できませんでした。助けてください。

タイプセット

答え1

TeXディストリビューションが最新のものであると仮定すると、以下の手順を追加することでフォーマットの目的を達成できるでしょう。

\counterwithout{equation}{chapter}
\counterwithout{section}{chapter}

プリアンブルに と記述します。TeX ディストリビューションが古い場合は、chngcntr前の 2 つの手順を実行する前にパッケージをロードする必要があります。

追加コメント:

  • \\環境の開始前に明示的な改行 を挿入する必要はありませんalign。実際、\\その場所に を挿入するのはあまり良い習慣ではないと私は言います。

  • 命題に表示される方程式は 1 行で構成されているため、align環境を環境に置き換える必要がありますequation

  • 1 つのインライン方程式を書く代わりに、$ax^2 + bx + c = 0,\ a\neq 0,\ a,\ b,\ c \in \mathbb{R}$3 つの [3!] 個の別々のインライン方程式を書きます: `$ax^2 + bx + c = 0$, $a\neq 0$, $a,\ b,\ c \in \mathbb{R}$。少なくとも、1 つの長い方程式ではなく 3 つの短い方程式を使用すると、TeX が適切な改行を見つける作業が容易になります。

    $ax^2 + bx + c = 0,\ (a\neq 0,\ a,\ b,\ c \in \mathbb{R}$)同様に、を に置き換えます$ax^2 + bx + c = 0$, ($a\neq 0$, $a,b,c\in\mathbb{R}$)

  • {i}の目的は合字\newtheorem{definition}{Def{i}nition}[section]を分割することだと私は思います。fiその場合、 を使用して{}合字を分割することは pdfLaTeX では機能しますが、XeLaTeX と LuaLaTeX では機能しないことに注意してください。 と記述する方が適切です\newtheorem{definition}{Def\kern0ptinition}[section]

ここに画像の説明を入力してください

\documentclass{book}
\usepackage{amsmath, amsthm, amssymb}

\theoremstyle{definition}
\newtheorem{definition}{Def\kern0ptinition}[section]
\newtheorem{lemma}{Lemma}[section]
\newtheorem{proposition}[definition]{Proposition}

\counterwithout{equation}{chapter}
\counterwithout{section}{chapter}

\begin{document}
\mainmatter
\chapter{Quadratic Equation}
\section{Introduction}
\begin{definition}
An equation $ax^2 + bx + c = 0$, $a\neq 0$, $a, b, c \in\mathbb{R}$ is a 
called a \textbf{quadratic equation}. The values of $x$ which satisfies 
it are called its \textbf{roots}.
\end{definition}
\begin{proposition}
The roots of the quadratic $ax^2 + bx + c = 0$, ($a\neq 0$, 
$a,b,c\in\mathbb{R}$) are given by
\begin{equation}
    x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} \,.
\end{equation}
\end{proposition}
\end{document}

関連情報