答案1
biblatex-ieee
通过 bibstring 添加“[Online]”标记url
(参见ieee.bbx
,v1.3f 中的第 78 行),所以我们可以通过重新定义这个 bibstring 来摆脱它
\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[backend=biber, style=ieee]{biblatex}
\DefineBibliographyStrings{english}{
url = Available ,
}
\begin{filecontents}{\jobname.bib}
@techreport{autosar_technical_review,
title = {Technical Overview},
author = {AUTOSAR},
date = {2008},
url = {https://www.autosar.org/fileadmin/user_upload/standards/classic/3-0/AUTOSAR_TechnicalOverview.pdf}
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}
\begin{document}
Lorem \autocite{sigfridsson,autosar_technical_review,ctan}
\printbibliography
\end{document}