如何创建附录的标题页?

如何创建附录的标题页?

目前我使用\usepackage{appendix}。命令后\appendix,每个\section{Section Name}将显示为“附录A.章节名称”。

我希望附录有一个标题页。具体来说,我希望附录以标题“我的论文 XXX 的附录”和一些描述段落开头,然后以每个部分开头。在 LaTex 中可以实现吗?

答案1

由于您没有给出 MWE,我不知道您做了什么,但正如您提到的,\section我假设您正在使用该article课程。

% appendixpageprob3.tex  SE 517746 title page and text

\documentclass{article}
\usepackage[page]{appendix} % print appendices title
\renewcommand{\appendixpagename}{Appendix for My Paper XXX} % Appendices title
\usepackage{lipsum}

\begin{document}
\section{Section}
\lipsum[1]
\clearpage  % move to another page
\begin{appendices}
Some text after the Appendices heading.
\clearpage % move to another page

\section{In appendices}
\lipsum[1]

\end{appendices}

\end{document}

有关详细信息,请查看文档(> texdoc appendix)。

相关内容