如何将参考文献/引文从 Endnote 导入温哥华风格的 LaTeX?

如何将参考文献/引文从 Endnote 导入温哥华风格的 LaTeX?

我只是想知道如何将参考文献/引文(我不知道正确的术语是什么,但目前,我将坚持使用参考文献)从 Endnote 导入 LaTeX 文档(完成后我将保存为 pdf)。参考文献必须采用温哥华风格。为了说明这一点,这里有一张(在 Word 中)的图片,显示了它应该是什么样子,我希望在 LaTeX 中获得相同的输出:Word 中的温哥华风格引用

我读过一些关于 BibLaTeX 的东西,但我不太理解。比如,它是 LaTeX 文档中的一个域吗?或者它与 LaTeX 有什么不同?它是一个特殊的编辑器吗?等等……

我完全是个新手。事实上,在两周前参加入门课程之前,我甚至不知道 LaTeX 的存在。现在,参加完这门课后,我知道了 LaTeX 可以做什么,我认为它真的很酷,我决心学习它(通过 YouTube 教程或其他资源)。话虽如此,我只想请求大家对我宽容一点,不要用太难的术语,否则新手无法理解。如果我不明白,我当然会努力查找,但请不要让我阅读几个网页只是为了了解一个术语的含义。

总结一下:如何将 LaTeX 与 Endnote 链接起来并导入温哥华风格的参考文献?

提前致谢!

答案1

1) 首先,你需要将 Endnote 数据库转换为BibTeX格式(不是 LaTeX)。我没有这方面的经验,但程序JabRef应该是File> Import into new database> 选择File of Type>Refer/Endnote并使用扩展名保存新数据库.bib。您说您将其命名为test.bib(默认格式为 BibTeX)。可能,在保存之前,您可能需要将设置Database encodingUTF8(在File>中Database properties)。

如果你.bib用文本编辑器打开该文件,它应该是这样的:

% This file was created with JabRef 2.10.
% Encoding: UTF8

@Article{Arbogast2016,
  Title                    = {Can technology save us? The biomechanics of concussion prevention.},
  Author                   = {Arbogast, K.},
  Journal                  = {Journal of Neurotrauma.},
  Year                     = {2016},
  Pages                    = {A4},
  Volume                   = {33}
}

@Article{Hanson2015,
  Title                    = {Effectiveness of a Home-Based Counselling Strategy on Neonatal Care and Survival: A Cluster-Randomised Trial in Six Districts of Rural Southern {Tanzania}},
  Author                   = {Hanson, Claudia and Manzi, Fatuma and Mkumbo, Elibariki and Shirima, Kizito and Penfold, Suzanne and Hill, Zelee and Shamba, Donat and Jaribu, Jennie and Hamisi, Yuna and Soremekun, Seyi and et al.},
  Journal                  = {PLOS Medicine},
  Year                     = {2015},
  Month                    = {Sep},
  Number                   = {9},
  Pages                    = {e1001881},
  Volume                   = {12},
  Editor                   = {Chappell, Lucy C.Editor},
  ISSN                     = {1549-1676},
  Publisher                = {Public Library of Science (PLoS)}
}

@Article{Kroshus26082015,
  Title                    = {Engaging Teammates in the Promotion of Concussion Help Seeking},
  Author                   = {Kroshus, Emily and Garnett, Bernice R. and Baugh, Christine M. and Calzo, Jerel P.},
  Journal                  = {Health Education \& Behavior},
  Year                     = {2016},
  Number                   = {4},
  Pages                    = {442--51},
  Volume                   = {43}
}

2)现在,你需要做一个乳胶文档(说myfile.tex)包含一些文本,使用 引用这些参考资料\cite{<key>},设置温哥华风格(使用 \bibliographystyle{vancouver})并调用.bib数据库(\bibliography{<filename>}不带扩展名)。示例:

\documentclass{article}
\usepackage[colorlinks,citecolor=blue]{hyperref}
\usepackage[dutch]{babel}
\begin{document}
Omtrent de biomechanica wordt er iets verteld.\cite{Arbogast2016}
Daarnaast zijn er nog twee topics: homa based telecoinselling\cite{Hanson2015}
en concussion help seeking.\cite{Kroshus26082015}
\bibliographystyle{vancouver} 
\bibliography{test} % this call the test.bib file
\end{document}

3)最后,您必须至少按照此顺序编译此文档以解决所有交叉引用:

pdflatex myfile
bibtex myfile
pdflatex myfile
pdflatex myfile

结果应该是这样的 myfile.pdf

姆韦

在复杂的文档中,您可能需要运行更多次pdflatex或更多的辅助程序。许多 LaTeX 编辑器可以帮助完成这项任务,使这一步 --- 或多或少 --- 自动化。

相关内容