我对附录有疑问。
我想删除目录中附录后面的编号,同时希望附录页面默认出现在每个附录的第一页。换句话说,我只想删除编号。
我希望我说得足够清楚。
答案1
以下是附录包的一个示例,希望对您有所帮助:
\documentclass{article}
\usepackage[title,titletoc]{appendix}
\begin{document}
\tableofcontents
\clearpage
\section{first}\section{second}
\begin{appendices}
\section{additional material}
\section{more of it}
\end{appendices}
\end{document}
该title
选项将“附录”放在每个附录部分标题中,并将titletoc
“附录”放在每个目录条目中。还有更多选项可用,例如page
插入一个写着“附录”的页面。请参阅文档了解完整详情。
答案2
听起来你好像没有\appendix
在附录前使用。
\section{Normal section}
\appendix
\section{First appendix}
\section{Second appendix}
当然,这将表明
1 Normal section
A First appendix
B Second appendix
而不是Appendix A
。明显的解决办法是将内容粘贴\renewcommand\thesection{\appendixname~\Alph{section}}
在后面\appendix
,但效果并不好。我相信一定有更好的办法。