我需要“AA”页码,因为我的附录对于单个字母“A”、“B”等来说太大了,但无法使其工作。
我的尝试是:
\documentclass[a4paper,11pt,oneside,final]{report}
\usepackage{alphalph,etoolbox}
\begin{document}
\pagenumbering{arabic}
\section{1}
\section{2}
\clearpage
\pagenumbering{Alph}
\renewcommand\thesection{\AlphAlph{\value{section}}}
\appendix
\end{document}
答案1
\pagenumbering
期望一个以 开头的宏,该宏@
采用像 这样的值\AlphAlph
。
序言部分:
\makeatletter
\newcommand{\@AlphAlph}{}% Check that \@AlphAlph is undefined.
\let\@AlphAlph=\AlphAlph
\makeatother
然后下面的操作应该可以工作:
\pagenumbering{AlphAlph}