使用温哥华风格对参考书目进行排序

使用温哥华风格对参考书目进行排序

我是 LaTeX 新手,我希望能够用温哥华风格对我的参考文献进行排序,但我不知道是否需要包含一些库或做其他事情?

我在网上搜索过,但我很困惑,我发现了类似的东西

 \cite{key} ==>>          [#]

但它不起作用,我希望你能帮助

答案1

有关 LaTeX 和 BibTeX 工作原理的概述,一般请参见:

这是一个简单的例子:

假设你的.bib文件如下所示:

测试文件

@article{Hudson-et-al1982,
    Author = {Hudson, Lynne M and Guthrie, Karen H and Santilli, Nicholas R},
    Journal = {Journal of Child Language},
    Month = {Feb},
    Number = {1},
    Pages = {125-138},
    Title = {The Use of Linguistic and Non-Linguistic Strategies in Kindergarteners' Interpretations of 'More' and 'Less'},
    Volume = {9},
    Year = {1982}}

(您可以使用您最喜欢的参考管理器(最有可能是 JabRef(Windows/Linux/Mac)或 BibDesk(Mac))创建这些条目。请参阅:

现在创建一个文档:

\documentclass{article}
\bibliographystyle{vancouver}
\begin{document}
This is a citation in the text\cite{Hudson-et-al1982}.
\bibliography{testbib}
\end{document}

使用 进行编译pdflatex,然后bibtex,然后 ,pdflatexpdflatex一次。有关为什么这是必要的更多信息,请参阅:

代码输出

相关内容