
Как сделать так, чтобы номера сносок имели такую форму? Предпочтительно \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}