将附录部分的章节标题重新定义为整页

将附录部分的章节标题重新定义为整页

我正在创建一个包含多个附录部分的文档(文档类为article)。我像这样将数字更改为字母,没有任何问题:

\setcounter{ldelim}section{rdelim}{ldelim}0{rdelim}

\renewcommand{ldelim}\thesection{rdelim}{ldelim}    
\Alph{ldelim}section{rdelim}{rdelim}

此时我需要做的是将节标题更改为整页,并带有大号粗体文本,如下所示(但居中):

附录 A

这是名字

本附录

然后从那里进行分页,然后继续正常处理下一页。我见过字体、大小等略有不同的例子,但没有见过如此大的差别。

在此先感谢您的帮助。

答案1

我靠着大量的猜测和很少的想象力想出了这个。由于问题中没有任何具体说明,下面的例子保持简单,绝不想要

沃伦附录页面

\documentclass{article}
\usepackage{blindtext}

\newcommand{\appendixsection}[1]{\clearpage\vspace*{.3\textwidth}\begingroup\Huge\bfseries%
\refstepcounter{section}%
\addcontentsline{toc}{section}{\numberline{\thesection}#1}%
\noindent\appendixname~\thesection\par\noindent#1\par\endgroup\clearpage}

\begin{document}
\tableofcontents
\blinddocument
\appendix
\appendixsection{This is the name of this appendix}
\blindtext
\subsection{test}
\appendixsection{This is the name of another appendix}
\end{document}

相关内容