조판 영역 내에서 각주 뒤에 나타나는 텍스트를 조판하고 싶습니다. (이것이 어떻게 가능한지? 나는 (지오메트리 패키지와 \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}