2列と1列の脚注を切り替える

2列と1列の脚注を切り替える

次のような短いリンクをたくさん印刷するときに、2 列の脚注が必要になることがあります (スペースを節約し、見た目をすっきりさせるため)。

ここに画像の説明を入力してください

しかし、結果が非​​常に煩わしい可能性があるため、一部のページでは 1 つの列だけにしたい場合があります。

ここに画像の説明を入力してください

それは可能でしょうか?どのページを 2 列にし、どのページを 1 列にするかを手動で指定してもかまいません。

ムウェ

\documentclass[]{article}

\usepackage{dblfnote}
\DFNalwaysdouble % for this example
\usepackage{hyperref}

\begin{document}

Hey, on this page\footnote{\url{https://exampleA.org}} I want footnotes\footnote{\url{https://exampleBe.org}} to be in two columns\footnote{\url{https://exampleC.org}}. This helps when footnotes\footnote{\url{https://exampleD.org}} are really small\footnote{\url{https://exampleE.org}} like here\footnote{\url{https://exampleF.org}}.

\newpage

But on this page that contains mostly long footnotes, it feels weird to cut them in two columns\footnote{See I would be better looking on a single line than here, half cut in an ugly two column layout.}.
\end{document}

関連情報