我正在使用report
类和appendix
包,我想有一个名为的未编号章节Appendices
,其中每个附录都是一个部分在该章节下命名Appendix X
。目录中的编号也应该很强大:每个附录的前缀编号应该是\Alph
。定义的方式appendix
是,每个附录都是一个章节,这似乎是小的矫枉过正。
我不确定 MWE 是否适用于此。
\documentclass[a4paper]{report}
\usepackage[toc,title]{appendix}
\begin{appendices}
\section{First appdx}
\section{Second appdx}
\end{appendices}
答案1
我认为该软件包没有提供您需要的机制。幸运的是,您自己提供所需的安装说明(特别是、和指令)appendix
并不困难。\addcontentsline
\setcounter
\renewcommand\thesection
\documentclass[a4paper]{report}
\begin{document}
\tableofcontents
\chapter{First chapter}
\section{Introduction}
\section{Conclusion}
\chapter{Second chapter}
\section{Introduction}
\section{Conclusion}
\chapter*{Appendices}
%% provide three setup instructions:
\addcontentsline{toc}{chapter}{Appendices} % write to the toc file
\setcounter{section}{0}
\renewcommand\thesection{\Alph{section}}
\section{First appendix}
\section{Second appendix}
\end{document}