
これらの自動化を実現する方法
「ページ内の短い単一の音符を中央に配置する場合、同じ行に 3 つの EM # 間隔で非常に短い音符をいくつか配置します」
以下のような出力
1. Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text
2. short footnote 3. short footnote 4. shortfootnote
5. Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text
答え1
のbigfoot
パッケージには、(改良された標準マクロ の他に\footnote
) プレーンな脚注を強制するマクロ\footnote+
(デフォルト スタイルが の場合でもpara
) と\footnote-
段落スタイルの脚注を強制するマクロ (デフォルトが の場合でもplain
) があります。表示される数式、引用符、またはリスト環境を含む脚注はプレーン スタイルである必要があります。したがって、デフォルト スタイルが の場合は、それぞれの脚注に をpara
使用する必要があります。\footnote+
\documentclass{article}
\usepackage{bigfoot}
\DeclareNewFootnote[para]{default}
\newcommand*{\sometext}{Hello, here is some text without a meaning. This
text should show, how a printed text will look like at this place.
If you read this text, you will get no information.}
\begin{document}
\null\vfill% just for the example
First paragraph.\footnote+{%
\sometext
\begin{equation}
a^2 + b^2 = c^2
\end{equation}
}
Second paragraph.\footnote{A short footnote.}
Third paragraph.\footnote{Another short footnote.}
Fourth paragraph.\footnote+{%
\sometext
\begin{quote}
\sometext
\end{quote}
}
\end{document}