我正在使用biblatex-chicago
选项url=false
,但我想仅包含一些参考的 URL。是否有命令允许我重新引入这些参考的 URL,同时保留通用选项?
答案1
要允许使用 URL 作为个别引用,请options = {url=true},
向相应.bib
条目添加一个字段。(要为某些条目类型启用 URL,请参阅URL 字段仅适用于 biblatex 中的某些参考类型)
\documentclass{article}
\usepackage[american]{babel}
\usepackage[babel]{csquotes}
\usepackage[url=false,backend=biber]{biblatex-chicago}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{A01,
author = {Author, A.},
year = {2001},
title = {Alpha},
url = {www.alpha.com},
}
@misc{B02,
author = {Buthor, B.},
year = {2002},
title = {Bravo},
url = {www.bravo.com},
options = {url=true},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\nocite{*}
\begin{document}
\printbibliography
\end{document}