使用 footmisc 包格式化脚注——获得理由

使用 footmisc 包格式化脚注——获得理由

我想更改脚注的默认格式,以便获得左对齐的文本。因此,我使用以下代码(效果很好):

\usepackage[hang, bottom]{footmisc}
\setlength{\footnotemargin}{0pt}
\renewcommand{\hangfootparskip}{0pt}

但是,使用此规范会丢失对齐(我也想要右对齐)我已经尝试使用

\usepackage{ragged2e}

然后,\justify但这会导致垂直间距问题。我知道我可能可以用 来解决这个问题,\vspace但我想实现一些不那么麻烦的方法。

提前致谢!凯蒂

答案1

我不知道你的问题是什么。我试过这个 MWE

% footmiscprob.tex  SE 593822
\documentclass{article}
\usepackage[hang,bottom]{footmisc}
\setlength{\footnotemargin}{0pt}
\renewcommand{\hangfootparskip}{0pt}

\usepackage{lipsum}
\setlength{\textheight}{0.3\textheight} % make a shorter page

\begin{document}

Text\footnote{\lipsum[1]}

\end{document}

在此处输入图片描述

这似乎可以实现您想要的效果,因为脚注是左对齐和右对齐的。

也许您希望通过添加一个我们可以处理的 MWE(从\documentclass...\end{document})来编辑您的问题,以显示您的问题。

相关内容