我希望脚注在.tex
文件中是独立的,但在生成的文件中不带空格。可以这样做吗?
示例:
This is some text\footnote{with a footnote}
渲染为
这是一些文本1
然而
This is some text
\footnote{with a footnote}
呈现为
这是一些文本1
我想避免使用多余的空格,但将脚注写在不同的行上。
答案1
%
在行尾插入\footnote
This is some text% <--- Important
\footnote{with a footnote}
作为参考,请参阅%
行末百分号 ( ) 有什么用?或者,在继续进行常规放置之前重新定义\footnote
执行:\unskip
\footnote
\let\oldfootnote\footnote
\renewcommand{\footnote}{\unskip\oldfootnote}% Remove any skips inserted before \footnote
%...
This is some text
\footnote{with a footnote}