欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

LaTeX 参考文献 :未下载Endnote、NoteExpress

程序员文章站 2024-01-04 08:03:34
...

生成 refereence.bib文件

  1. LaTeX中新建 Bibtex文件,命名为 reference
  2. 将参考文献按引用顺序排序 , 谷歌学术(百度学术等)搜索文章标题,引用中有其Bibtex文件,按序将其复制到reference.bib文件中

生成 document.bbl 文件

新建 document.tex 文件

内含代码:

\documentclass{article}

\begin{document}

\nocite{*}

\bibliography{reference}

\bibliographystyle{IEEEtran}

\end{document}

 注:bibliographystyle 可更改

运行(直接点击PDFTeXify , 确保 .tex 文件与 .bib文件在同一个文件夹下)。会在原路径得到 .bbl文件。

主文件部分

  1. 将.bbl文件内部所有的\bibitem{}形式数据粘贴到主文件中
    \begin{thebibliography}{1}后边即可。
  2. 在文章主体引用位置使用 \cite{} 和参考文献连接。
    如:\bibitem{hardy2002} , \cite{goedert2006,hardy2002}

其他

方法比较原始。NoteExpress可直接导出 .bib文件。后续步骤相同。Endnote没有用,应该也可以。

上一篇:

下一篇: