如何在 bibtex 中包含技术报告编号并保留机构名称?

如何在 bibtex 中包含技术报告编号并保留机构名称?

我的MWEB:

\documentclass[12pt,twoside]{article} 
\usepackage{natbib}

\begin{document}

\nocite{*}
\bibliographystyle{apalike}
\bibliography{references}

\end{document}

在我包含的 references.bib 文件中,

@techreport{abc2017xyz,
title={def},
author={Lmn, O},
year={2017},
institution={pqr}}

我希望参考文献中包含“技术报告”一词以及报告编号,例如 127。此外,还应包含机构名称。如何进行?

答案1

您可以添加带有的数字number={127},,您的所有其他愿望似乎都已经在那里了。

\documentclass[12pt,twoside]{article} 
\usepackage{natbib}
\usepackage{filecontents}

\begin{filecontents*}{references.bib}
@techreport{abc2017xyz,
title={Title of the report},
author={Lmn, O},
year={2017},
number={127}, 
institution={Name of Institute}
}
\end{filecontents*}

\begin{document}

\nocite{*}
\bibliographystyle{apalike}
\bibliography{references}

\end{document}

在此处输入图片描述

相关内容