附录计数器太大

附录计数器太大

在我的附录中包含更多内容后,我收到以下错误:LaTeX 错误:计数器太大。

我的附录中有 30 多个面,但是在 Z 之后,Acrobat 显示 AA、BB……这是可以的,但是这些页码并没有像 A、B、C……那样显示在页面上,而且似乎会引发错误。

我如何显示页码并修复它?

这是我的文档的摘录(抱歉,我的页面样式有点混乱):

\documentclass[twoside,10pt,english,openright]{report}
\usepackage{appendix}
\usepackage[...]{hyperref}
\usepackage{fancyhdr}
....
\begin{document}
%define pagestyle
\fancyhf{}  % empty header and footer
\fancyfoot[LE,RO]{\thepage} 
\fancyhead[LE,RO]{\leftmark}%leftmark produce CHAPTER 2. CHAPTER TWO TITLE
\fancyhead[RE,LO]{\rightmark}%rightmark produce 2.3 SECTION TITLE
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}
\pagestyle{fancy}%empty for NO style, plain for just a page number
\fancypagestyle{plain}{%\chapter causes plain page style. So redefine it for chapter sites
\fancyhf{}%
\fancyfoot[LE,RO]{\thepage} 
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0.4pt}
 }
 %
....
\pagenumbering{Alph}
\setcounter{page}{1}
\begin{appendices}
\input{./chapters/appendix}
\end{appendices}
\end{document}

相关内容