我在胶乳中使用文档类作为报告,我不想使用文章。现在的问题是当我在我的文档中使用section时,它以0.0 0.1 0.2等开始,而我想要它作为1.0 Abstract 1.1 Introduction等,并且小节应该是1.0.0 1.0.1等同样应该反映到目录中。 有人请帮我这个。谢谢
答案 0 :(得分:4)
如果您不使用任何report
,则无需使用book
(或\chapter
)。这是一种方法:
\documentclass{report}
% Subtract 1 from counters that are used
\renewcommand{\thesection}{\thechapter.\number\numexpr\value{section}-1\relax}
\renewcommand{\thesubsection}{\thesection.\number\numexpr\value{subsection}-1\relax}
\renewcommand{\thesubsubsection}{\thesubsection.\number\numexpr\value{subsubsection}-1\relax}
\setcounter{secnumdepth}{3}
\setcounter{chapter}{1}% Not using chapters, but they're used in the counters
\begin{document}
\tableofcontents
\section{First section}
\subsection{First subsection}
\subsubsection{First subsubsection}
\subsubsection{Second subsubsection}
\subsection{Second subsection}
\section{Second section}
\subsection{First subsection}
\subsubsection{First subsubsection}
\end{document}