Biblatex 格式组织错误

Biblatex 格式组织错误

当我在参考书目中两次使用同一个组织作为作者时,我得到了一个奇怪的输出。第二次使用作者/组织条目时,它被替换为下划线。

\RequirePackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@booklet{testlit:2012vz,
title = {{Testlit1}},
author = {{European Standard Company}},
howpublished = {Selbstverlag},
address = {Berlin},
month = oct,
year = {2012}
}
@booklet{testlit:2013tk,
title = {{Testlit2}},
author = {{European Standard Company}},
howpublished = {Selbstverlag},
address = {Berlin},
month = feb,
year = {2013}
}
\end{filecontents*}

\documentclass[a4paper,12pt]{report}

\usepackage{xcolor}

\usepackage[                
 bibstyle=ieee,
 citestyle=ieee,
 sorting=none,
 block=space,
 natbib=true,
 backend=biber
 ]{biblatex}
 \addbibresource{\jobname.bib}
 \urlstyle{same}

 \begin{document}
 hello \citep{testlit:2012vz}
 world \citep{testlit:2013tk}
 \printbibliography
 \end{document}

在此处输入图片描述

答案1

这并没有错,这是您选择的风格的特点,在参考列表中用长破折号代替重复的作者。

但是,您可以通过添加来禁用该功能

dashed=false

biblatex选项。

相关内容