脚注标记后不需要空格

脚注标记后不需要空格

我想删除脚注标记后的小空格(它在标点符号之前尤其明显)。 MWE

\documentclass{article}
\begin{document}
Text\footnote{first}. Text\footnote{second} continues.
\end{document}

我已经测试了负字距,但间距根据整体行距而不同。

在此处输入图片描述

答案1

这正是fnpct目的:

\documentclass{article}
\usepackage{fnpct}
\setfnpct{punct-after}

\begin{document}

Text\footnote{first}. Text\footnote{second} continues.

\end{document}

在此处输入图片描述

或者

\documentclass{article}
\usepackage{fnpct}

\begin{document}

Text\footnote{first}. Text\footnote{second} continues.

\end{document}

在此处输入图片描述

移位的量是可定制的。

相关内容