如何使“附录”水平居中?

如何使“附录”水平居中?

我正在使用文章类,当使用时\begin{appendices} \end{appendices},“附录”标题会自动左对齐。

以下是 MWE:

\documentclass[11pt]{article}

\usepackage[toc,page,header]{appendix}

\begin{document}

\begin{appendices}

\end{appendices}

\end{document}

有没有办法让它水平居中?谢谢。

答案1

你是这个意思吗?

\documentclass[11pt]{article}
\usepackage{showframe}   %% just for demo
\usepackage[toc,page,header]{appendix}

\renewcommand{\appendixpagename}{\centering Appendices}

\begin{document}
\tableofcontents

\begin{appendices}
 \section{Appendix here}
\end{appendices}

\end{document}

在此处输入图片描述

相关内容