我正在使用文章类,我想在目录中包含附录和文献章节,但不进行编号。我的代码如下所示:
\documentclass[a4paper]{article}
\usepackage[natbibapa]{apacite}
\begin{document}
\tableofcontents
\clearpage
\section{Introduction}
\section{Theory}
\section{Conclusion}
\bibliography{bibliography}
\bibliographystyle{apacite}
\section{Appendix}
\subsection{Results}
\subsection{Code}
\end{document}}
结果是:
我想要的是这个:
我仍然希望目录中有页码,但没有章节号。顺便说一句,我构建了这个最小版本来展示我的问题。实际文档相当大,而且我使用了许多包,因此更改文档类对我来说不是一个真正的选择。
答案1
该article
课程没有章节。要停止章节编号,请使用\setcounter{secnumdepth}{0}
\documentclass[a4paper]{article}
\usepackage[natbibapa]{apacite}
\begin{document}
\tableofcontents
\clearpage
\section{Introduction}
\section{Theory}
\section{Conclusion}
\setcounter{secnumdepth}{0} % PW added to stop section numbering
\bibliography{bibliography}
\bibliographystyle{apacite}
\section{Appendix}
\subsection{Results}
\subsection{Code}
\end{document}}