在我目前正在撰写的论文的源目录中,我有一个硕士论文作为来源之一。作为此来源的类型,我选择了硕士论文,现在 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}