biblatex:减少字体大小引用标记

biblatex:减少字体大小引用标记

如何减小引用标记的字体大小(使用 biblatex)?

一个相同的问题是之前问过,但是,遗憾的是,它对我来说似乎不起作用。

考虑以下 MWE:

% arara: pdflatex
% arara: biber
% arara: pdflatex
% arara: pdflatex

\documentclass{beamer}

\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{greenwade93,
    author  = "George D. Greenwade",
    title   = "The {C}omprehensive {T}ex {A}rchive {N}etwork ({CTAN})",
    year    = "1993",
    journal = "TUGBoat",
    volume  = "14",
    number  = "3",
    pages   = "342--351"
}
@book{goossens93,
    author    = "Michel Goossens and Frank Mittelbach and Alexander Samarin",
    title     = "The LaTeX Companion",
    year      = "1993",
    publisher = "Addison-Wesley",
    address   = "Reading, Massachusetts"
}
\end{filecontents}

\usepackage[backend=biber,natbib=true,style=alphabetic,citestyle=alphabetic]{biblatex}
\addbibresource{\jobname.bib}

% https://tex.stackexchange.com/questions/6953/biblatex-changing-the-font-of-citation-marks-and-the-references
% does not seem to work...
\renewcommand*{\citesetup}{%
    \small
    \biburlsetup
    \frenchspacing}
%or: \appto{\citesetup}{\footnotesize}

\begin{document}

\begin{frame}
Lorem ipsum~\citep{goossens93}.
Dolor sit amet~\citet{greenwade93}.
\end{frame}

\begin{frame}
\printbibliography
\end{frame}

\end{document}

引用标记看起来与文本的其余部分大小相同,而不是更小......

答案1

首先你需要 需要\addbibresource{\jobname.bib}扩展名。但是,而不是\small使用\tiny,你会看到字体变化。\small通常很难看到,因为它只比\normalsize

相关内容