添加跨页文本引用文本

添加跨页文本引用文本

我的文档中有引用\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}

相关内容