有没有简单的方法来引用某个特定页码之前的页面\label
?或者是否可以添加或减去某个特定数字(例如包含的 PDF 的页码)?
答案1
编辑以纠正我的错误记忆(我以为\pageref
是我想要的宏,但事实上是\getpagerefnumber
)。事后向 Christian 道歉,因为他在评论中引用了这样的答案。
\documentclass{article}
\usepackage{lipsum,refcount}
\begin{document}
\lipsum[1-20]
THE PAGE HAS BEEN RECORDED\label{pg:EQ}.
\lipsum[21-30]
\edef\tmp{0\getpagerefnumber{pg:EQ}}
The page before the notation is \the\numexpr-1+\tmp\relax.
\end{document}