如何让脚注的编号呈现这种形式?最好是\renewcommand
。
以下是我使用此代码得到的结果:
\documentclass[%
,12pt
,french
]{report}
\usepackage{babel}
\begin{document}
Test\footnote{ojndscosdsncsdpn}
\end{document}
输出:
答案1
该问题是由为报告类或 babel 包加载的法语选项引起的。 您可以通过\frenchbsetup{FrenchFootnotes=false}
在加载后添加来关闭此行为babel
。 这将导致更常见的上标样式。
其他样式校正(如悬挂或齐平边缘)可以通过软件包进行,footmisc
其易于阅读文档。
% arara: pdflatex
\documentclass{report} % report as requested
\usepackage[french]{babel} % French language chosen in babel
\frenchbsetup{FrenchFootnotes=false} % This line switches off the french footnote style.
% The rest is just cosmetics to get closer to your picture.
\usepackage{fnpct} % Just a cool package for nice footnotes at colons.
\usepackage[%
,hang % sets the footnote more to the right (left aligned to the line)
,flushmargin % reduces the distance between number and footnote
]{footmisc} % See the manual of footnote for custom margins a.s.o.
\begin{document}
This is a test\footnote{ojndscosdsncsdpn}.
\end{document}