【Latex】正文中用Bibtex管理参考文献的一个demo

本demo中包含两个文件example.tex和myref.bib,用的时候参照改就行啦。
example.tex:用的时候将'\'和后面文字中间的空格去掉
-----------------
\documentclass{article}
\ begin{document}
%
Note. This is the Postscript version with plain bibliographic style. 
Most of the academic staff in the School of Computer Science and Software Engineering have publications in their field of expertise or research. The majority of the publications appear in journals or proceedings of conferences. Articles appearing in journals may be written by a single author~\cite{Meyer2000}. Where there are multiple authors, the citation in the text usually names only the first author, for example Kim Marriott's article on logic programming~\cite{Codishetal2000}. The same fate befalls Henry Wu~\cite{Huetal2000}. Some authors contribute a chapter to edited books~\cite{WallaceandKorb1999}. Others, for example Christine Mingins, jointly publish a book~\cite{Jezequeletal2000}. Damian Conway is a world expert on Perl. As well as having written a book on this topic~\cite{Conway2000}, he has also been the subject of articles~\cite{Johnston2000}.
%
\bibliographystyle{IEEEtran}\footnotesize
\bibliography{myref}
\end{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
myref.bib:%包含常用的种类
-----------------
@ARTICLE{Meyer2000,
AUTHOR="Bernd Meyer",
TITLE="A constraint-based framework for diagrammatic reasoning",
JOURNAL="Applied Artificial Intelligence",
VOLUME= "14",
ISSUE = "4",
PAGES= "327--344",
YEAR=2000
}
@ARTICLE{Codishetal2000,
AUTHOR="M. Codish and K. Marriott and C.K. Taboch",
TITLE="Improving program analyses by structure untupling",
JOURNAL="Journal of Logic Programming",
VOLUME= ""43",
ISSUE = "3",
PAGES= "251--263",
YEAR=2000
}
@inproceedings{Huetal2000,
author = "J. Hu, and H.R. Wu and A. Jennings and X. Wang",
title = "Fast and robust equalization: A case study",
booktitle = "Proceedings of the World Multiconference on Systemics, Cybernetics and Informatics, (SCI 2000), Florida, USA, 23-26 July 2000",
publisher = "International Institute of Informatics and Systemics", 
address = "FL, USA",
pages = "398--403",
year = "2000"
}
@Book{Conway2000,
author = {Damian Conway},
title = {Object {O}riented {P}erl: {A} comprehensive guide to concepts and programming techniques},
publisher = {Manning Publications Co.},
year = {2000},
address = {Connecticut, USA}
}
@misc{gpu1,
   howpublished = {\url{https://en.wikipedia.org/wiki/Mali_(GPU)}}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
编译步骤:
-----------------
latex---->bibtex---->pdftexify 

你可能感兴趣的:(latex)