我正在写论文,参考文献有问题。我的导师要求我参考文献应该是这样的:
作者、标题、期刊、年份(粗体)、卷 xx-xx 页
而不是我得到的:作者,标题,期刊,卷,第 xx-xx 页,年份。
实际的 MWE:
\documentclass[11pt]{article}
\usepackage{filecontents}
\begin{filecontents*}{mybib.bib}
@misc{Nobody06,
author = "Nobody Jr",
title = "My Article",
year = "2006"
}
\end{filecontents*}
\begin{document}
Blablabla~\cite{Nobody06}.
\bibliography{mybib}{}
\bibliographystyle{ieeetr}
\end{document}