..png)
여러 페이지에 걸쳐 있는 문서 내에서 모든 페이지의 텍스트 끝 부분에 특정 텍스트를 즉시 추가하고 싶습니다(다음 페이지 시작 부분에도 동일하게 적용하고 싶습니다). 나는 실질적으로 \AtEndDocument{text}
페이지 수준의 펜던트를 찾고 있습니다.
펜던트가 정확히 그렇게 해야 하지만 모든 페이지에 대해 \AtEndPage{here ends page \thepage}
\AtBeginPage{여기에서 페이지 시작 \thepage}와 같은 내용이 표시됩니다.
그만큼목적는 다음과 같습니다: 법률적인 텍스트이며 이는 원본 텍스트 앞이나 뒤에 여유 공간에 추가 정보(텍스트)가 추가되는 것을 생략하는 것입니다. 동시에 그것은 미학적으로 유지되어야 하는 문서이며 이는 각주 등이 아닌 텍스트 스트림을 보유하는 텍스트 상자 내에서 발생해야 합니다.
이런 일이 일어날 것이다
\begin{multicols}{2}
환경 내에서- 페이지 나누기가 있는 경우에만 문서 끝에 텍스트가 추가되지 않습니다.
이것이 내가 원하는 것이며 여기에서는 수동으로 수정했습니다.
\documentclass{article}
\usepackage{lipsum}
\begin{document}
\textbf{Here will be a formal beginning, which indicates the legal beginning of the document, so no continuation-indicator is needed.}
\lipsum[1-1]
\footnote{This is a footnote that is outside the actual 'text stream'}
\lipsum[1-1]
% This is manual, I will not know, where the page will break.
% The voulnerable part of the text is protected by this:
\textbf{end of page \thepage} % manual
\newpage
% %he voulnerable part of the text is protected by this:
\textbf{start of page \thepage} % manual
\lipsum[1-3]
\textbf{Here will be a formal end, which indicates the legal end of the document, so no continuation-indicator is needed.}
\end{document}