我在使用时遇到了一些问题\appendix
。我想要一个主“附录”页面,其中包含“附录目录”,之后所有附录(单独)都从新页面的顶部开始。参见用 paint 制作的图片,分页符由一条线表示。希望这个回答能帮助到大家。J
我的代码现在是:
%%%%%%%%%%%%%%%%%%%%
%%% APPENDIX
%%%%%%%%%%%%%%%%%%%%
\appendix
%%%%%%%%%%%%%%%%%%%%
% Appendix A
%%%%%%%%%%%%%%%%%%%%
\chapter{Appendix A}
\section{Numerical results}\label{app:AppendixA}
\newpage
\pagestyle{empty} \cleardoublepage %\pagestyle{fancyplain}
%%%%%%%%%%%%%%%%%%%%
% Appendix B
%%%%%%%%%%%%%%%%%%%%
\chapter{Appendix B}
\section{Figures}\label{app:AppendixB}
\newpage
\pagestyle{empty} \cleardoublepage %\pagestyle{fancyplain}
答案1
这里有两个解决方案。
和表包裹
\documentclass{book}
\usepackage{tableof}
\AtBeginDocument{\tofOpenTocFileForWrite}
\begin{document}
\tableofcontents % just to display the heading Contents
\tableof{}% replace \tableofcontents i.e. display toc file
\chapter{First}
\section{Foo}
\appendix
\tableofcontents
\tableof{appendix}
\toftagstart{appendix}
\chapter{First appendix}
\section{Foo appendix}
\chapter{Last Appendix}
\section{Barappendix}
\toftagstop{appendix}
\end{document}
和标题目录包裹
\documentclass{book}
\usepackage{titletoc}
\begin{document}
\tableofcontents
\chapter{First}
\section{Foo}
\appendix
\startcontents
\printcontents{}{0}{%
\setcounter{tocdepth}{2}%
\tableofcontents}
\chapter{First appendix}
\section{Foo appendix}
\chapter{Last Appendix}
\section{Bar appendix}
\stopcontents
\end{document}