異なるフォントで表示される参考文献のリンク

Aug 16 2020

私は現在、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}
}

回答

3 moewe Aug 16 2020 at 12:14

biblatexurlパッケージの機能を使用して、URLおよびURLのようなオブジェクト(DOI、eprints、...)をタイプセットします。

デフォルトurlでは\ttfamily、のURLをタイプセットしますが、通常のドキュメントフォントをリクエストできます。

\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パッケージをロードする場合にも機能します。