footmisc 段落模式中的空间过多

footmisc 段落模式中的空间过多

在以下 MWE 中

\documentclass{article}

 % Footnotes on the same line
\usepackage[para]{footmisc}

\begin{document}
\footnote{Loremip: Dolorsi}.
\footnote{Lorem ipsum dolor sit consec: {https://www.gelitsedd.mod/ddaemporinci/}}
\end{document}

脚注的单词之间有很大的空格(我想是为了使文本对齐),看起来非常丑陋。在段落模式下,有没有办法更改脚注中文本的对齐方式?我尝试将其ragged作为选项传递footmisc,但没有帮助。

答案1

在此处输入图片描述

你可以\RaggedRightragged2e 补丁中获得

在此处输入图片描述

或默认\raggedright(允许更多粗糙度,因此单词间距拉伸较少)以获得

在此处输入图片描述

\documentclass{article}

 % Footnotes on the same line
\usepackage[para]{footmisc}
\usepackage{ragged2e}
\usepackage{etoolbox}
\patchcmd\makefootnoteparagraph{\par}{\RaggedRight\par}{}{}
\begin{document}
\footnote{Loremip: Dolorsi}.
\footnote{Lorem ipsum dolor sit consec: {https://www.gelitsedd.mod/ddaemporinci/}}
\end{document}

相关内容