我看到了类似问题,但接受的答案不会在 KOMA 脚本类中生效。
\usepackage{lastpage} ... \cfoot{\thepage\ of \pageref{LastPage}}
我正在使用scrartcl
和lastpage
。默认页码就是页码本身。我希望它是currentPage / totalPages
。我该如何修改它?
答案1
记得指定页面样式。这个最小示例有效,在页脚中显示“2 of 3”等:
\documentclass{scrartcl}
\usepackage{lastpage}
\usepackage{scrpage2}
\cfoot{\thepage\ of \pageref{LastPage}}
\pagestyle{scrheadings}
\begin{document}
text
\newpage
text
\newpage
text
\end{document}