从 biblatex/biber 系列中删除“ser”

从 biblatex/biber 系列中删除“ser”

我想在使用biblatexbiber 后端时从系列中删除“ser。”。MWE 如下:

\documentclass[letterpaper,10pt]{article}

\usepackage[style=ieee,backend=biber,giveninits=true,maxcitenames=99]{biblatex} 

\usepackage{filecontents}
\begin{filecontents}{pubs.bib}
@incollection{key, 
  year = {2014},
  booktitle = {Book title},
  volume = {8451},
  series = {Lecture Notes in Computer Science},
  editor = {Editor Middle Name},
  doi = {1234},
  title = {Title of article},
  publisher = {Big Book Publisher},
  author = {First Author and Second Author},
  pages = {1--150},
}
\end{filecontents}

\bibliography{./pubs.bib}

\begin{document}

\fullcite{key}

\end{document}

这看起来像

在此处输入图片描述

答案1

将此添加到您的序言中:

\DeclareFieldFormat[book,inbook,incollection,inproceedings]{series}
 {#1}

在此处输入图片描述

相关内容