콘텐츠 인덱싱이 미쳐가고 혼란스러워지고 있습니다.

콘텐츠 인덱싱이 미쳐가고 혼란스러워지고 있습니다.

논문의 목차와 명제의 색인 생성과 관련하여 큰 문제가 있습니다. 예전에는 섹션만 사용했는데 주로 챕터를 소개하면서 시작된 것 같아요.

내 목차는 이렇습니다.여기에 이미지 설명을 입력하세요

인덱싱은 전혀 의미가 없습니다. 마찬가지로 정의, 명제 등의 카운터에도 관련 문제가 있는 것 같습니다. 예를 들면 다음과 같습니다.

여기에 이미지 설명을 입력하세요

대신 섹션을 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}

mythLaTeX를 카운터 로 사용하도록 명령합니다 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?

관련 정보