我找到了如何使用阿拉伯语对附录进行编号的方法,例如“A-1”,但只有当附录部分有多页时,这种方法才有效。如果附录部分只有一页,它仍然只显示“1”作为页码,而不是“A-1”。只有当页码超过 1 页时才会出现这种情况。它在目录中也只显示为“1”,但我宁愿它是“A-1”。
我正在使用的代码:
\newpage\begin{appendix}
\pagenumbering{arabic}
\renewcommand*{\thepage}{A-\arabic{page}}
\section{My Appendix On One Page}
\lipsum
\end{appendix}
答案1
我对此没有任何解释,但它似乎可以通过将新定义移出appendix
环境来解决。
\documentclass[12pt,a4paper]{article}
\usepackage{lipsum}
\begin{document}
\tableofcontents
\section{Section 1}
\lipsum
\newpage
\pagenumbering{arabic}
\renewcommand*{\thepage}{A-\arabic{page}}
\begin{appendix}
\section{My Appendix On One Page}
\lipsum
\end{appendix}
\end{document}