脚注缩进

脚注缩进

可能重复:
多行脚注的布局

这似乎是一个相对简单的请求——尽管我似乎无法在任何地方找到答案。我正在使用 biblatex-chicago 包,只是想增加脚注在第一行的缩进量。基本上,默认值看起来是 1/4 英寸,而我宁愿它是 1/2 英寸。

在丢失了以前的版本(样式文件,不是论文!)后,我目前正在重写论文的类文件。我可以发誓,几个月前我才弄清楚了这一点——而且,我很确定它不需要任何额外的软件包。

答案1

不使用任何包,您可以重新定义\@makefntext以增加第一行的缩进(我使用了3.6em,但您可以使用更适合您需要的长度):

\documentclass{article}
\usepackage{biblatex-chicago}
\usepackage[paperheight=6cm,includefoot]{geometry}% just for the example
\addbibresource{biblatex-examples.bib}

\makeatletter
\renewcommand\@makefntext[1]{%
  \noindent\makebox[3.6em][r]{\@makefnmark}#1}
\makeatother

\begin{document}
Some text for a footnote citation\footfullcite{murray} and some text for a standard footnote\footnote{The footnote text.}
\end{document}

在此处输入图片描述

相关内容