LaTex\TexStduio set bibliography Bibtex

  • \emphChange font for emphasis (straight to italic, italic to straight)
  • \cite{标识}Indicates references, \citet \citepall in reference format (need to add corresponding macro package \natlib)

manage once, use once

reference format

% \begin{thebibliography}{编号样本}
%	\bibitem[记号]{引用标志}文献条目1
%	\bibitem[记号]{引用标志}文献条目2
%	……
% \end{thebibliography}
% 其中文献条目包括: 作者、题目、出版社、年代、版本、页码等
% 引用时候可以采用:\cite{引用标志1,引用标志2,……}

example

\begin{document}
	引用一篇文章\cite{article1}
	引用一本书\cite{book1}等等
	\begin{thebibliography}{99}
		\bibitem{article1}陈立辉,苏伟,蔡川,陈晓云.\emph{基于LaTex的Web数学公式提取方法研究}[J]. 计算机科学. 2014(06)
		\bibitem{book1}William H. Press,Saul A. Teukolsky, William T. Vetterling, Brian P. Flannery, \emph{Numberical 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}.	% \texttt 打字机字体
		\bibitem{latexMath} Graetzer George, \emph{Math Into \LaTeX}, BirkhAouser Boston; 3 edition (June 22, 2000).
	\end{thebibliography}
\end{document}

insert image description here

Manage multiple uses once (English literature)

Be sure to compile twice! ! ! ! !

1. First create a bib file in the current directory

Save the references you need to cite. The format is as follows: ({mittelbach2004 and patashnik1984bibtex are both reference identifiers)

@BOOK{mittelbach2004,
title = {The {
   
   {\LaTeX}} Companion},
publisher = {Addison-Wesley},
year = {2004},
author = {Frank Mittelbach},
series = {Tools and Techniques for Computer Typesetting},
address = {Boston},
edition = {Second}
}

@article{patashnik1984bibtex,
	title={BIBTEX 101},
	author={Patashnik, Oren},
	year={1984}
}

2. Specify the typesetting style of the reference in the latex file

\bibliographystyle{plain} %指定参考文献的排版样式,plain格式

3. Introduce the required references in the text

(My references are kept in testRefence.bib)
\bibliography{testRefence} %引入需要的参考文献

\bibliography{testRefence,testReference2} multiple files separated by commas

example

\documentclass{ctexart}

\bibliographystyle{plain}	 %指定参考文献的排版样式,plain格式

\begin{document}
	这是一个参考文献的引用:\cite{mittelbach2004}
	这是另一个引用:\cite{patashnik1984bibtex}
	\bibliography{testRefence}	%引入需要的参考文献
	

\end{document}

insert image description here

Manage multiple uses once (Chinese literature)

  1. Download Zeroto
  2. The browser adds the zeroto connector extension file
  3. Enter the literature page you want to cite and click (the picture below is an example of Firefox browser
    Firefox's zeroto connector plugin
  4. Enter the zotero application, you can see your saved documents
  5. right click on document
    insert image description here
    insert image description here
  6. Select the export format as BiTex
    insert image description here
  7. Select the file export path and specify the file name, the file has bib as the suffix
  8. citation results
\documentclass{ctexart}

\bibliographystyle{plain}	 %指定参考文献的排版样式,plain格式

\begin{document}
	这是一个参考文献的引用:\cite{mittelbach2004}
	
	这是另一个引用:\cite{patashnik1984bibtex}
	
	这是一个来自知网的文献:\cite{__nodate}
	
	\bibliography{testRefence,testReference2}	%引入需要的参考文献
	

\end{document}

insert image description here

Quick access to citation format tips

When citing a document from Google scholar, you can click to
insert image description here
select a citation template as needed
insert image description here

Supongo que te gusta

Origin blog.csdn.net/weixin_42173136/article/details/121015634
Recomendado
Clasificación