正文结束之后是附录,我希望让附录不计入总页码。 比如正文共20页,我想让正文最后一页的页码为20/20, 而让接下来的附录不计入总页数中,如何实现? 附录的页码不显示我使用了\pagestyle{empty}

3 回答3

0
手写吧。附录本身也是占页数的。
  • 非常感谢! – Wolverine 2020-02-11 11:29 回复
0
一点点页码超出不影响你拿奖
0
简单的,手写一个 label 就行 ```tex \documentclass{article} \usepackage{amsmath} \newcommand\labelLastPage{% % store result of \ref{} into \@currentlabel \edef\@currentlabel{\thepage}% \label{LastPage}% } \begin{document} \section{title} abc \labelLastPage \newpage \appendix \pagenumbering{roman} \section{title} \thepage/\pageref{LastPage} \end{document} ``` 复杂的,可以去看 `pageslts` 宏包。

你的回答

请登录后回答

你的回答将会帮助更多人,请务必认真回答问题。