我知道以前有人问过这类问题,但我仍然对论文中章节和小节的编号感到困惑。我有以下 MWE:
\documentclass\[12pt,a4paper,twoside\]{report}
\begin{document}
\tableofcontents
\newpage
{\bf \underline{List of Abbreviations used in the thesis}}\\
ECM \quad \quad\quad\quad\quad Elliptic Curve Method
\addcontentsline{toc}{chapter}{List of Abbreviations}
\pagenumbering{arabic}
\setcounter{page}{1}
\chapter{Introduction}
\input{chapters/Introduction}
\end{document}
在章节简介中,我有以下 MWE:
In the first section of this chapter,...
\section{Elliptic Curves}
One of the major problems of...
\subsection{Curves of genus zero}
An important..
\subsection{Curves of genus one}
An elliptic..
\subsection{Curves of higher genus}
\section{Literature review}
我想要的编号是:
1. Introduction
1.1 Elliptic curves
1.1.1 Curves of genus zero
1.1.2 Curves of genus one
1.1.3 Curves of higher genus
1.2 Literature review
答案1
这个答案恰恰是为了指明正确的方向……
我采用了 OP 的“MWE”,删除了错误和弃用的语法部分,并添加了(然而是众多方法之一)以提供List Of Abbreviations
。
但是,编号是预期的,不像 OP 的屏幕截图那样。
不幸的是,原始文档的某个部分肯定还出现了其他错误,但这里没有显示出来。
\documentclass[12pt,a4paper,twoside]{report}
\usepackage[nomain,acronym,toc]{glossaries}
\makenoidxglossaries
\newacronym{ecm}{ECM}{Elliptic Curve Method}
\begin{document}
\tableofcontents
\clearpage
\printnoidxglossary[type=acronym,title={List of Abbreviations used in the thesis},toctitle={List of Abbreviations}]
%% This is wrong/deprecated
%{\bf \underline{List of Abbreviations used in the thesis}}\\
%ECM \quad \quad\quad\quad\quad Elliptic Curve Method
%\addcontentsline{toc}{chapter}{List of Abbreviations}
\pagenumbering{arabic}
%\setcounter{page}{1} % Not necessary, since `\pagenumbering{arabic} sets the page counter always to 1
\chapter{Introduction}
\section{Elliptic Curves}
One of the major problems of \gls{ecm}
\subsection{Curves of genus zero}
An important..
\subsection{Curves of genus one}
An elliptic..
\subsection{Curves of higher genus}
\section{Literature review}
\end{document}