想要更改 biblatex-chicago 引文的脚注大小

想要更改 biblatex-chicago 引文的脚注大小

我是新手biblatex(特别是biblatex-chicago)。我想让脚注引用的大小与正文大小相同。有人知道如何更改脚注的默认字体大小吗?

我目前biblatex-chicago在序言中呼吁如下:

\usepackage[notes,strict,backend=biber,babel=other, bibencoding=latin1]{biblatex-chicago}

答案1

它不是一个biblatex东西,而是与你正在使用的文档类或正在加载的包有关。memoir例如,在中,你可以写

\renewcommand{\footnotetext}{\normalsize}

一切就绪。但这种方法并不适用于所有情况。除了最简单的情况外,不推荐使用的一种肮脏的 hack 是\letfootnotesize = normalsize:

\let\origfootnotesize\footnotesize
\let\footnotesize\normalsize

但显然这将使一切使用 footnotesize 的文本将以 normalsize 排版,这可能会导致其他更大的问题。(\origfootnotesize如果出于某种原因需要,将允许您手动调用原始 footnotesize 声明。)

\documentclass[12pt]{article} 
\usepackage{lipsum} 
\let\origfootnotesize\footnotesize
\let\footnotesize\normalsize
\begin{document}
XXX%
\footnote{\lipsum[1]}%
YYY%
\footnote{\origfootnotesize\lipsum[1]}%
\end{document} 

对于文章类,您可以按照以下方式重新定义@footnotetext(from )的定义:article.cls

\makeatletter
\long\def\@footnotetext#1{\insert\footins{%
%   \reset@font\footnotesize% <-- original
    \reset@font\normalsize%   <-- change
    \interlinepenalty\interfootnotelinepenalty
    \splittopskip\footnotesep
    \splitmaxdepth \dp\strutbox \floatingpenalty \@MM
    \hsize\columnwidth \@parboxrestore
    \protected@edef\@currentlabel{%
       \csname p@footnote\endcsname\@thefnmark
    }%
    \color@begingroup
      \@makefntext{%
        \rule\z@\footnotesep\ignorespaces#1\@finalstrut\strutbox}%
    \color@endgroup}}%
\makeatother

report.cls这应该能满足您的要求。和的定义book.cls可能相同,但我还没有查看。

相关内容