使用Latex匯出IEEE格式參考文獻

Cui_Hongwei發表於2020-11-21

參考及致謝

LaTex: Undefined citation warnings 解決方法
Paperpile

執行環境

在這裡插入圖片描述

使用方法演示

Step1

在空資料夾中新建一個latex檔案
在這裡插入圖片描述

Step2

下載latex格式檔案,下載連結
在這裡插入圖片描述
點選圖中圈出的連結下載。將下載好的IEEEtran.bst檔案拷貝到Step1中新建的資料夾下。
在這裡插入圖片描述

Step3

之後,我們在資料夾下新建一個BibTex檔案,命名為sampleBibFile.bib
在這裡插入圖片描述
用記事本開啟.bib檔案,將以BibTex格式從網站匯出的論文引用複製到.bib檔案中並儲存。這裡以IEEE網站為例,其他學術網站同理。
在這裡插入圖片描述

Step4

開啟最初建立的latex檔案,向其中複製以下內容

\documentclass[a4paper,10pt]{article}

\begin{document}

This is an example of a paragraph with in-text
citations using the IEEEtran BibTeX style.
Here is a reference to a journal article with
a single author \cite{article1}.

\bibliographystyle{IEEEtran}
\bibliography{sampleBibFile}
\end{document}  

注意倒數第二行,格式為:\bibliography{.bib檔案的名稱}
將上面示例程式碼中的article1替換成bibTex中文章的代號。如下圖所示。
在這裡插入圖片描述
所以替換之後的程式碼是:

\documentclass[a4paper,10pt]{article}

\begin{document}

This is an example of a paragraph with in-text
citations using the IEEEtran BibTeX style.
Here is a reference to a journal article with
a single author \cite{7892683}.

\bibliographystyle{IEEEtran}
\bibliography{sampleBibFile}
\end{document}  

Step6

此時如果你直接點選“build&view” (我用的是TexStudio),編譯能夠正常執行並退出,如果報錯,請檢查之前的步驟。
在這裡插入圖片描述
但輸出的pdf不能正常顯示引用的內容,如下圖所示:
在這裡插入圖片描述

Step7

使用鍵盤"Win" + “R” 輸入cmd,開啟命令列。
使用cd命令定位到存放latex檔案的目錄下(為了方便演示,我在桌面新建了名為citation的目錄用於存放之前提到的檔案)。
在這裡插入圖片描述
因為最初新建的.tex檔案的名稱是citation,執行如下命令。

pdflatex citation	# 使用pdflatex compile
bibtex citation 	# 使用bibtex compile
pdflatex citation
pdflatex citation

tex結尾的命令後面跟的引數是.tex檔名。

Step8

手動開啟目錄下面已經編譯好的pdf檔案,引用和文字內容一切正常,可以直接複製到word。

在這裡插入圖片描述

其他

或者也可以試一下Cite This For Me這個網站。
在這裡插入圖片描述

相關文章