我使用 footmisc 来做脚注,并使用符号选项。我想删除符号标记前的空格,并将符号也放在脚注中:
我在文档中没有看到任何关于此的内容,我可以实现吗?最小工作示例:
\documentclass[11pt]{book}
\usepackage[paperwidth=11cm,paperheight=18cm]{geometry}
\usepackage[francais]{babel}
%footnote marks must be symbols and not numbers :
\usepackage[symbol]{footmisc}
\begin{document}
\vspace*{10cm}
This is my main text\footnote{This is my footnote}.
\end{document}
答案1
首先,请\usepackage[french]{babel}
按照建议进行编码,而不是\usepackage[francais]{babel}
。
是的,添加的细空格是标准的法语印刷习惯。如果您不喜欢,可以查看文档中的选项babel-french
(frenchb.pdf
英语或frenchb-doc.pdf
法语文件)。
\frenchsetup{AutoSpaceFootnotes=false}
将删除脚注调用前的空格。
\frenchsetup{FrenchFootnotes=false}
将切换回标准脚注,可能更适合您的使用情况。另请参阅命令\StandardFootnotes
和\FrenchFootnotes
。