內容索引變得瘋狂並且變得混亂

內容索引變得瘋狂並且變得混亂

我在論文目錄和命題索引方面遇到了一些大問題。我認為這主要是從我介紹章節開始的,而我之前只使用了章節。

這就是我的目錄的樣子在此輸入影像描述

索引根本沒有任何意義。同樣,定義、命題等計數器似乎也有相關問題,例如

在此輸入影像描述

我希望該節為 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

相關內容