使用 pageslts 包时,我收到以下 3 个错误:
! Package undolabl Error: Label `pagesLTS.roman.local' shall be overridden although it does not yet exist.
See the undolabl package documentation for explanation.
Type H <return> for immediate help.... \undonewlabel{pagesLTS.roman.local}
! Package undolabl Error: Label `pagesLTS.roman' shall be overridden although it does not yet exist.
! Missing number, treated as zero.<to be read again>\[email protected] \end{document}
当我尝试在文档开头设置一个默认编号方案(如 roman)时,在之后立即将其更改\begin{document}
为另一个方案(如 alph,不写任何内容),写一些内容(直到创建新页面),然后尝试恢复原始方案(roman)。
这是我的 MWE:
\documentclass{article}
\usepackage{pageslts}
\pagenumbering{roman}
\begin{document}
\pagenumbering{Alph}
alpha
\newpage
\pagenumbering{arabic}
arabic
\newpage
\pagenumbering{roman}
roman
\end{document}
如果我不使用文档开头设置的方案,就不会发生这些错误。