使用 natbib 更改源中自动生成的文本

使用 natbib 更改源中自动生成的文本

在我目前正在撰写的论文的源目录中,我有一个硕士论文作为来源之一。作为此来源的类型,我选择了硕士论文,现在 Latex 总是在我的德语源目录中写入“硕士论文”。有没有办法将其更改为“Masterarbeit”?

答案1

一个mastersthesis条目接受一个type字段:

\begin{filecontents*}{\jobname.bib}
@mastersthesis{x,
 author={Me Myself},
 title={My thesis},
 type={Masterarbeit},
 school={That School},
 year={2020},
}
\end{filecontents*}

\documentclass{article}
\begin{document}
\cite{x}
\bibliographystyle{plain}
\bibliography{\jobname}
\end{document}

在此处输入图片描述

相关内容