というタイトルの本を覚えていますか?「悪い年の日記」によって書かれたジョン・マクスウェル・クッツェー(ノーベル賞作家)?
そうでない場合、この本は特別な形式で、各ページが水平に分割されており、上部のセグメントではいくつかのエッセイが説明され、下部のセグメントではストーリーが説明されています (下の図を参照)。
この文書を(LaTeXで)書くにはどうすればいいでしょうか?珍しい形式? または同様の LaTeX 環境の使用は (可能な限り) 避けたいと思いますminipage
。これらの環境では、コンテンツ全体を入力して本と一緒に自動的に配布する方法がサポートされていない可能性があります。
答え1
脚注は、あなたが探している動作にぴったりのようです。
\documentclass{article}
% place holder text
\usepackage{lipsum}
% increase footnote font size
\renewcommand{\footnotesize}{\normalsize}
% suppress footnote marker with custom command \blfootnote
\makeatletter
\def\blfootnote{\xdef\@thefnmark{}\@footnotetext}
\makeatother
% full width footnote separator
\renewcommand\footnoterule{\hrule}
\renewcommand{\footnoterule}{\raggedleft\hrule\vspace*{2em}}
\begin{document}
\section{Heading}
\lipsum[1-2]
\blfootnote{\lipsum[2]}
\end{document}