如何在具体案例中创造和运用温哥华风格?

如何在具体案例中创造和运用温哥华风格?

我应该根据 BibTeX 中提供的温哥华格式来编制参考书目。我收到了以下参考资料,并被告知它基于温哥华格式:

Seward JP。职业压力。收录于:LaDou J 主编。《当代职业与环境医学》。第 3 版。纽约:MC Grow Hill,2004 年;页:603-18。

如何使用现有的输入字段来编写参考文献?例如,“In:”是什么意思?它在温哥华格式中的对应字段是什么?它是如何创建的?

我一直在搜索上述参考资料,但似乎在互联网上找不到!请告诉我如何才能将这些参考资料“LaTeX”化。

提前致谢。

答案1

您应该使用@incollection该条目的条目类型。

在此处输入图片描述

\RequirePackage{filecontents}
\begin{filecontents}{mybib.bib}
@incollection{seward:04,
  author    = "James P. Seward",
  title     = "Occupational Stress",
  editor    = "Joseph LaDou",
  booktitle = "Current Occupational \& Environmental Medicine",
  publisher = "McGraw-Hill",
  edition   = "Third",
  year      = 2004,
  pages     = "603-618",
}
\end{filecontents}

\documentclass{article}
\bibliographystyle{vancouver}
\begin{document}
\nocite{seward:04}
\bibliography{mybib}
\end{document}

相关内容