书目中的链接以不同的字体显示

书目中的链接以不同的字体显示

我目前使用 IEEE 引文样式来生成参考书目。但是,链接和 DOI 的格式与引文正文不同。如何让它们符合相同的字体和大小?我的有问题的参考部分目前是什么样的。

生成该代码的示例如下:

\usepackage[style=ieee]{biblatex}
\addbibresource{`my references`}
\printbibliography

.bib 代码:

@article{Abkenari2015,
author = {Abkenari, Mehrdad and  Rezaei, Alireza and Pournayeb, Naghmeh},
doi = {10.5281/zenodo.1339604},
journal = {International Journal of Architectural, Civil and Construction Sciences},
pages = {1138--1142},
title = {{Recycling Construction Waste Materials to Reduce the Environmental Pollutants}},
year = {2015}
}
@misc{DenseNet,
    title={Densely Connected Convolutional Networks},
    author={Gao Huang and Zhuang Liu and Laurens van der Maaten and Kilian Q. Weinberger},
    year={2016},
    eprint={1608.06993},
    archivePrefix={arXiv},
    primaryClass={cs.CV}
}

答案1

biblatex使用包的功能url来排版 URL 和类似 URL 的对象(DOI、eprints、...)。

默认情况下url,URL 排版为\ttfamily,但你可以使用 请求普通文档字体

\urlstyle{same}

其他可能的呼吁\urlstyle可以在url包装手册

\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[style=ieee]{biblatex}
\urlstyle{same}

\addbibresource{biblatex-examples.bib}

\begin{document}
\cite{sigfridsson,baez/online,ctan,markey}
\printbibliography
\end{document}

URL 采用与其余文本相同的字体。

如果您加载hyperrefxurl包,这也会有效。

相关内容