报告类和附录包:所有附录都以罗马字母部分放在一个章节下

报告类和附录包:所有附录都以罗马字母部分放在一个章节下

我正在使用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}

相关内容