更改 bibtex 条目的语言

更改 bibtex 条目的语言

我如何更改参考表中条目显示的语言。例如,在有多个作者的情况下,我看到 author1 和 author2。我想将其转换and -> und为德语,因为这是我正在编写的语言(同样如此edition-> Auflage)。

.LaTeX 代码:

\documentclass{article}

\begin{document}
    
    text \cite{hawking}.
    
    \bibliographystyle{apalike}
    \bibliography{sample}
\end{document}  

这是sample.bib文件

@book{hawking,
          title     = "A Brief History of Time: From the {B}ig {B}ang to Black Holes",
          author    = "Stephen Hawking and Stephen Spielberg",
          year      = 1988,
          publisher = "Bantam",
          address   = "London",
          edition=3
        }

答案1

使用 apalike-german 作为参考书目样式应该适合您

\documentclass{article}

\begin{document}
    
    text \cite{hawking}.
    
    \bibliographystyle{apalike-german}
    \bibliography{sample}
\end{document} 

相关内容