在包含附录的页面顶部添加标题“附录”

在包含附录的页面顶部添加标题“附录”

我想要在包含附录的页面顶部显示“附录”字样。

我有两列文本,并且有各种附录,标签为“此处为 A 标题”、“此处为 B 标题”等。

我想要在这些内容的顶部有一个简单的主标题,简单地写着“附录”(字体稍大一些)。

\documentclass[twocolumn]{article}

\begin{document}
Refer to Appendix~\ref{append_a}.


\clearpage
\appendix
%% I want to have something here like \title{appendix}
\section{The first appendix}
\label{append_a}
Text here

\end{document}

答案1

您实际上并不需要创建命令,但对我来说使用命令看起来更好(更模块化)。

\documentclass[twocolumn]{article}

\newcommand{\appendixhead}%
{\centering\textbf{\huge Appendices}
\vspace{0.25in}}

\begin{document}
Refer to Appendix~\ref{append_a}.

\twocolumn[\appendixhead]
\appendix
\section{The first appendix}
\label{append_a}
Text here

\end{document}

相关内容