我想更改脚注和标点之间的间距/字距。请参阅我的 MWE 了解说明。
梅威瑟:
\documentclass [] {scrbook}
\begin{document}
\setcounter{footnote}{70}
A sentence with a footnote which describes a word\footnote{Description of the word}. The next sentence.
A part sentence with a footnote,\footnote{Description of the part sentence} and the other part of the sentence.
\end{document}
对于第一个句子,我想将点稍微向左移动,以便它从开头衬线的右边界1
结束的位置开始71
。
对于第二句,我想将脚注72
稍微向左移动,以便其7
直接位于逗号的右侧。
我知道这个包fnpct
,但我不想切换标点符号和脚注的位置,因为它会改变脚注的含义(就像在第一句话中它指的是完整的句子而不是仅仅一个单词)。
答案1
我想说这\negthinspace
就是你要找的东西。
\documentclass [] {scrbook}
\newcommand{\kf}{\negthinspace\relax}
\begin{document}
\setcounter{footnote}{70}
A sentence with a footnote which describes a
word\footnote{Description of the word}\kf.
The next sentence.
A part sentence with a footnote,\kf\footnote{Description of the part sentence}
and the other part of the sentence.
\end{document}