コンテンツのインデックス作成が狂って混乱している

コンテンツのインデックス作成が狂って混乱している

私の論文の目次と命題の索引付けに関して、大きな問題があります。主に、以前はセクションのみを使用していたのに、章を導入したときに問題が始まったと思います。

私の目次は次のようになりますここに画像の説明を入力してください

インデックスはまったく意味をなさない。同様に、定義、命題などのカウンターにも関連する問題があるようだ。例えば、

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

代わりに、セクションを 2.2、定義を 2.2.1 と 2.2.2 にしたいのですが、問題は、章、セクション、定義などに同じ順序を生成しているように見えることです。

このテキストコードは実際には

\chapter{Fundamentals of Set and Order Theory} %which is the second chapter: so far so good$
\section{Axiomatics of Set Theory} %which appears as 2.1: ok%
\section{Orderings} %which apears as section 2.4 instead of 2.2: this is no coincidence since the previous section contains exactly 2 definitions%

これは新しい環境に関して私が使用しているコードです

\theoremstyle{plain}
\newtheorem{myth}[section]{Theorem}
\newtheorem{myprop}[section]{Proposition}
\newtheorem{mylemma}[section]{Lemma}

\theoremstyle{definition}
\newtheorem{mydef}[section]{Definition}

\theoremstyle{remark}
\newtheorem{myrmk}[section]{Remark}
\newtheorem{myex}[section]{Example}

自然な階層(章、節など)を尊重せずに、すべての索引が奇妙に混ざり合っているという印象です。

手伝ってくれてありがとう!

答え1

構文

\newtheorem{myth}[section]{Theorem}

LaTeX にカウンターとして使用するよう指示しますmyth。が使用されるsectionたびにmyth、セクション カウンターが増加します。 他の環境でも同様です。

あなたが望むのは

\theoremstyle{plain}
\newtheorem{myth}{Theorem}[section] % myth is subordinate to section
\newtheorem{myprop}[myth]{Proposition} % myprop shares the myth counter
\newtheorem{mylemma}[myth]{Lemma}

\theoremstyle{definition}
\newtheorem{mydef}[myth]{Definition}

\theoremstyle{remark}
\newtheorem{myrmk}[myth]{Remark}
\newtheorem{myex}[myth]{Example}

しかし、なぜこのような奇妙な名前を使用するのでしょうか?theoremよりも良くないでしょうかmyth?

関連情報