9

I want to remove the small space after footnote mark (it especially visible before punctuation marks). MWE

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

I've tested the negative kern, but the space is different depending on overall line space.

enter image description here

7
  • 1
    Is it really a space? Text$^1$. gives bare-eye identical result. Of course you are always free to use \! to manually fix it.
    – Symbol 1
    Commented May 22, 2019 at 21:47
  • 3
    In publishing, it's traditional to place the footnote marker after the punctuation, at least if the punctuation is a period or comma. That avoids unsightly spacing. Commented May 23, 2019 at 0:53
  • 1
    @barbarabeeton In “English typography”, yes, but not in French typography, at least. :-)
    – frougon
    Commented May 23, 2019 at 8:05
  • 1
    @frougon -- Fair enough. Different languages (and locations) do have different traditions. Thanks for the clarification. Commented May 23, 2019 at 13:34
  • 1
    @barbarabeeton in cyrillic typography we also place marker before punctuation (as in French). Commented May 24, 2019 at 10:14

1 Answer 1

5

That's exactly what fnpct is for:

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

\begin{document}

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

\end{document}

enter image description here

or

\documentclass{article}
\usepackage{fnpct}

\begin{document}

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

\end{document}

enter image description here

The amount of shifting is customizable.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .