我目前使用 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、eprint
s、...)。
默认情况下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}
如果您加载hyperref
或xurl
包,这也会有效。