从参考书目中删除“URL:”,但不删除实际的 URL

从参考书目中删除“URL:”,但不删除实际的 URL

我想在参考书目中包含 URL,但不希望文本URL:出现在参考书目中。

我知道我可以使用,note = {\url{...}}但是有没有办法在不修改文件的情况下实现这一点.bib

\documentclass{scrreprt}
\usepackage{url}
\usepackage[backend=biber,style=authoryear-ibid]{biblatex}

\begin{filecontents}{\jobname.bib}
 @misc{knuth1968art,
  title={The Art of Computer Programming 1: Fundamental Algorithms 2: Seminumerical Algorithms 3: Sorting and Searching},
  author={Knuth, D},
  year={1968},
  publisher={MA: Addison-Wesley},
  url={http://google.com}
}
\end{filecontents}

\addbibresource{\jobname.bib}


\begin{document}
 \nocite{knuth1968art}
 \printbibliography
\end{document}

答案1

您可以使用以下方式单独显示 URL

\DeclareFieldFormat{url}{\url{#1}}

相关内容