我的文档中有引用\appendix
文本,我希望在当前部分的各个页面中引用文本。例如:
答案1
\afterpage
原则上,您可以使用包中的文本在下一页顶部添加文本afterpage
。您应该定义一个宏,它\afterpage
本身会执行,但当您不再需要它时会重置。
以下是一些原理代码:
\documentclass{report}
\usepackage{afterpage}
\usepackage{blindtext}
\begin{document}
\blinddocument
\appendix
\chapter{SOME APPENDIX}
\newcommand\mycontinue{\noindent\makebox[\linewidth][r]{\textbf{Continue SOME APPENDIX}}\afterpage{\mycontinue}}
\afterpage{\mycontinue}
\Blindtext \Blindtext \Blindtext
\Blindtext \Blindtext \Blindtext
\let\mycontinue\relax % disable text
\chapter{Other stuff}
other text \Blindtext
\end{document}