Я хотел бы набрать текст, который отображается в области набора, но после сносок. (Как) это возможно? Я пытался сделать страницу короче (с помощью пакета геометрии и команды \newgeometry
) и использовать нижний колонтитул для этого текста. Я не могу сбросить геометрию на следующих страницах (см.мой другой вопрос). Но, может быть, есть лучший подход?
\documentclass{article}
\usepackage{geometry,blindtext}
\geometry{showframe}
\begin{document}
\blindtext[9]
\clearpage This is a special page\footnote{footnote}.
\specialcommand{A short horizontal rule and then in the next line: accumsan semper. Lorem ipsum dolor}
\blindtext[9]
\end{document}
решение1
Зависит немного от документа и того, насколько "общим" должно быть решение. В вашем примере подойдет простой нижний поплавок:
\documentclass{article}
\usepackage{geometry,blindtext}
\geometry{showframe}
\newcommand\specialcommand[1]{\begin{figure}[b]
\rule{3cm}{0.4pt}\\
#1
\end{figure}}
\begin{document}
\blindtext[9]
\clearpage This is a special page\footnote{footnote}.
\specialcommand{A short horizontal rule and then in the next line: accumsan semper. Lorem ipsum dolor}
\blindtext[9]
\end{document}
И предложение из \enlargethispage
вашего другого вопроса:
\documentclass{article}
\usepackage{geometry,blindtext,eso-pic}
\geometry{showframe}
\newcommand\specialcommand[1]{%
\enlargethispage{-1cm}
\AddToShipoutPictureBG*{%
\AtTextLowerLeft{%
\parbox[b]{\linewidth}{%
\rule{3cm}{0.4pt}\par#1}}}}
\begin{document}
\blindtext[9]
\clearpage This is a special page\footnote{footnote}.
\specialcommand{A short horizontal rule and then in the next line: accumsan semper. Lorem ipsum dolor}
\blindtext[9]
\end{document}