使用 biblatex 选项“babel=other”在多语言参考文献中使用空白行

使用 biblatex 选项“babel=other”在多语言参考文献中使用空白行

我使用biblatex选项“babel=other”来获取多语言参考书目。不幸的是,我的参考书目条目之间出现了空行,这些空行几乎填满了一行。如果我关闭该选项,babel=other不需要的空行就会消失,但参考书目不再是多语言的。

这是我的代码,它导致出现一个不需要的空白行:

\documentclass{scrreprt} 
\usepackage[ngerman, english]{babel}    
\usepackage[style=authoryear,babel=other]{biblatex}
\bibliography{bibliographie}

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

这是上面使用的文件的内容bibliographie.bib 。它位于与tex文件相同的目录中。

@Book{Davidson,
author      = {James Davidson},
title       = {{Stochastic Limit Theory}},
year        = {1994},
address     = {Oxford},
publisher       = {Oxford University Press},
hyphenation     = {english}
}

@article{Ghysels,
title       = {{On stable factor structures in the pricing of risk: Do time-varying betas help or hurt?}},
author      = {E. Ghysels}, 
year            = {1998},
journal     = {Journal of Finance},
volume      = {53},
pages           = {549--573},
hyphenation     = {english}
}

@Book{Breiman,
author      = {Leo Breiman  },
title       = {{Probability}},
year        = {1968},
address     = {Reading (Massachusetts) and Menlo Park (California) and London and Don Mills (Ontario)},
publisher       = {Addison-Wesley Publishing Company},
hyphenation     = {english}
}

@Book{Goos,
author      = {Gerhard Goos},
title       = {{Vorlesungen über Informatik}},
volume      = {1},
year        = 2000,
address     = {Berlin and Heidelberg and New York},
publisher       = {Springer-Verlag},
edition     = {3},
isbn        = {3-540-67270-2},
hyphenation     = {ngerman}
}

有人能帮助我吗?我会很高兴。

相关内容