当我使用 Roboto 字体时,参考书目编号大小不一致:使用这个最小示例
\documentclass{article}
\usepackage[backend=bibtex,style=ieee, sorting=none]{biblatex}
\usepackage[sfdefault]{roboto}
\begin{filecontents*}{./example.bib}
@article{nice,
author={B. C. Dull},
title={All functions are {$C^{\infty}$}},
journal={J. False Results},
year={2033},
}
@article{nice2,
author={B. C. Dull},
title={All functions are {$C^{\infty}$}},
journal={J. False Results},
year={2033},
}
\end{filecontents*}
\addbibresource{example.bib}
\begin{document}
Test~\cite{nice,nice2}.
\printbibliography
\end{document}
输出如下:
我怎样才能使它们大小相同?
答案1
您可以在任何地方使用表格数字,您可以通过使用roboto
以下tabular
选项加载包来实现:
\usepackage[sfdefault,tabular]{roboto}
或者,您可以在加载后添加以下内容,仅更改参考书目中标签的数字类型biblatex
:
为了pdflatex
\DeclareFieldFormat{labelnumber}{%
\ifbibliography
{\fontfamily{Roboto-TLF}\selectfont}
{}#1}
对于xelatex
或lualatex
\DeclareFieldFormat{labelnumber}{%
\ifbibliography
{\addfontfeatures{Numbers=Monospaced}}
{}#1}