Latex中bib檔案製作 參考文獻製作

2021-07-13 08:06:16 字數 2224 閱讀 8638

**參考文獻的組織是乙個挺麻煩的事情,剛開始寫**的時候自己很多東西不知道,參考文獻在自己組織,自己填寫各個item,真是麻煩啊,網搜上了搜,還真找到一些好方法,google的是自己常用的,不知道還有哪些方法大家可以共享啊。

一、用google來做latex的bib檔案

1. 開啟scholar.google.com

2. 定製   scholar preferences->bibliography manager ->show links to import citations int

o bibtex (選中這個)

3. search something like "multicast" in the scholar.google.com,

in the result list, kick "import into bibtex"    copy the text to bibtex database directly,

4 直接去編譯,不用任何修改

二、

latex技巧心得23:bibtex製作參考文獻

23bibtex 是一種格式和乙個程式, 用於協調latex的參考文獻處理.

bibtex 使用資料庫的的方式來管理參考文獻. bibtex 檔案的字尾名為 .bib . 先來看乙個例子

@article,

title = ,

journal = ,

volume = ,

number = ,

year = ,

abstract =

}@book

說明:第一行@article 告訴 bibtex 這是乙個文章型別的參考文獻. 還有其它格式, 例如 article, book, booklet, conference, inbook, incollection, inproceedings, manual, misc, mastersthesis, phdthesis, proceedings, techreport, unpublished 等等.

接下來的"name1", 就是你在正文中應用這個條目的名稱.

其它就是參考文獻裡面的具體內容啦.

在latex中使用bibtex

為了在latex中使用bibtex 資料庫, 你必須先做下面三件事情:

1) 設定參考文獻的型別 (bibliography style). 標準的為 plain:

\bibliographystyle

將上面的命令放在 latex 文件的 \begin後邊. 其它的型別包括

2) 標記引用 (make citations). 當你在文件中想使用引用時, 插入 latex 命令

\cite

"引用文章名稱" 就是前邊定義@article後面的名稱.

3) 告訴latex生成參考文獻列表 . 在 latex 的結束前輸入

\bibliography

這裡bibfile 就是你的 bibtex 資料庫檔案 bibfile.bib .

執行 bibtex

分為下面四步

例子: 將上面的 bibtex 的的例子儲存為 bibtex-example.bib .

\documentclass

\usepackage

\begin

\begin

%我是在linux下用使用latex的, window使用者將上一行改為\begin

text\cite\cite

中文把latex中的 reference 寫成中文的"參考文獻"

%如果文件類是article之類的, 用\renewcommand\refname

%如果文件類是book之類的, 用\renewcommand\bibname

\renewcommand\refname

\bibliographystyle

\bibliography

\end

\end

將上面的內容儲存為bibtex-example.tex .

latex編譯一次, bibtex 編譯一次, 再用 latex編譯兩次就大功告成了

from:

Latex中用bib檔案新增參考文獻

latex中有多種新增參考文獻的方式,一種是 begin.end 這種方式參考文獻按照期刊規定的格式直接寫在.tex檔案中,在引用處直接 cite 該檔案。另一種我比較熟悉的引用方式是把參考文獻寫在.bib檔案中,然後和.tex放在同一資料夾下,tex直接引用.bib中的參考文獻。這種方法比較簡單,...

LaTex 編譯 bib 參考文獻

新建乙個 bib 檔案,如 reference.bib。把要引用的文獻的 bibtex 格式內容的複製到 reference.bib 裡面 例如要引用的文獻的 bibtex 為 在 tex 檔案裡新增包引用 usepackage。bibliographystyle bibliography 其中 b...

Latex中如何製作參考文獻

一 用google來做latex的bib檔案 1.開啟scholar.google.com 2.定製 scholar preferences bibliography manager show links to import citations int o bibtex 選中這個 3.search ...