LaTeX學習-day11

LaTeX學習-day11

教程鏈接:B站
使用環境:

LaTeX中的參考文獻BibTex

1. 代碼:

%導言區
\documentclass{ctexart}

%\usepackage[round]{natbib} %獲得文獻引用的更多的樣式 [round]圓圈

%\bibliographystyle{plainnat} %plain unsrt alpha abbrv plainnat
\bibliographystyle{plain}

%正文區
\begin{document}
	latex13 LaTeX中的參考文獻BibTex
	
	%******************一次管理,一次使用******************
	%參考文獻格式:
	%\begin{thebibliography}{編號樣本}
	%	\bibitem[記號]{引用標誌}文獻條目1
	%	\bibitem[記號]{引用標誌}文獻條目2
	%...
	%\end{thebibliography}
	%其中文獻條目包括:作者,題目,出版社,年代,版本,頁碼等。
	%引用的時候可以採用:\cite{引用標誌1,引用標誌2...}
	引用一篇文章\cite{article1}	%引用一本書\citep{book1}等等
	
	\begin{thebibliography}{99}
		
		\bibitem{article1}陳立輝,蘇偉,蔡川,陳曉雲.\emph{基於LaTex的Web數學公式提取方法研究}[J].計算機科學,2014,41(06):148-154.
		
		\bibitem{book1}William H. Press, Saul A. Teukolsky, William T. Vetterling, Brian P. Flannery,\emph{Numerical Recipes 3rd Edition: The Art of Scientific Computing} Cambridge University Press, New York,2007.
		
		\bibitem{latexGuide} Kopka Helmut, W. Daly Patrick,\emph{Guide to \LaTeX}, $4^{th}$ Edition. Available at \texttt{http://www.amazon.com}.
		
		\bibitem{latexMath} George Grätzer, \emph{Math Into \LaTeX},
Birkhäuser Boston; 3 edition (June 22, 2000)		
		
	\end{thebibliography}


%******************使用文件獨立管理******************
這是一個參考文獻的引用:\cite{mittelbach2004}

%google學術 和 百度學術 可以直接引用BibTex引用
這是一個百度學術的參考文獻的引用:\cite{Lamport1994LaTeX}
	
%對於知網:先將文獻導入到Endnote,然後輸出Bibtex格式
這是一個cnki-endnote的參考文獻的引用:\cite{RN7}	
%排版出未引用的文獻,記得清理中間文件
\nocite{*}
% 最好放在一個文件裏
	\bibliography{test,cnki-endnote-bibtex}	
\end{document}

2. 結果

在這裏插入圖片描述

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章