在里面维基百科对于 LaTeX 书目汇编,以下列出作为标准模板:
@manual
Technical manual
Required fields: title.
Optional fields: author, organization, address, edition, month, year, note.
然而,
@manual{bioc2201man,
title="{Principles of Molecular Biology (Advanced) Course Syllabus and Laboratory Manual, Session 2, 2011}",
organization="{School of Biotechnology and Biomolecular Sciences}",
year="2011"
}
将无法编译。
但是将其指定为“文章”则可以。
维基百科有误吗?或者我遗漏了什么?
根据要求,这是一个最小的例子:
\documentclass[a4paper,12pt]{article}
\usepackage{cite}
\begin{document}
The method was derived from {\it Principles of Molecular Biology (Advanced) Course Syllabus and Laboratory Manual, Session 2, 2011}~\cite{bioc2201man}. Variations to be noted are...
\subsection*{References}
\bibliography{bib}{}
\bibliographystyle{natbib}
\end{document}