BibTex初次使用

2021/12/24 23:38:31

本文主要是介绍BibTex初次使用,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Researchers must have their own moral standards, and follow both social and academic moral standards
https://www.verywellmind.com/morality-vs-ethics-what-s-the-difference-5195271
疑问:Ethical and Moral有区别吗?

The difference between Bibliography and Reference

Bibliography and Reference
https://pediaa.com/what-is-the-difference-between-bibliography-and-references/
Bibliography 指你所参考的文献,Reference 指你所参考并放到Paper中的文献

citation and quotation
https://sjpucsd.com/difference-between-citation-and-quotation/
citation,quotation指引用文献中的一句话

Referencing Styles

MLA, APA, Harvard or MHRA
https://www.rlf.org.uk/resources/mla-apa-harvard-or-mhra/

Introduction of Tex

Donald Knuth于1978年发布了排版系统Tex,是用WEB/Pascal写的
MS于1990年发布MS Office, 是用C/C++写的

MS Word开发者:Charles Simonyi and Richard Brodie
MS PowerPoint开发者:Robert Gaskins
MS Excel开发者:Doug Klunder是MS早期表格软件Multiplan的开发者,肯定Excel是基于Multiplan写的. 但他对于Excel从text-based user interfaces 向 graphic UI的转变很失望,只参与了第一版Excel的1/3工作.
https://www.quora.com/Who-invented-Excel

BibTex

BibTeX 是由 Oren Patashnik 和 Leslie Lamport于1985用WEB/Pascal写的
https://www.economics.utoronto.ca/osborne/latex/BIBTEX.HTM

对于喜欢用MS写文章的同学,有很多插入文献的工具:Mendeley, EndNote, RefWorks, Zotero。而用latex写文章的,就是用BibTex将.bib文件中的文献插入到.tex中,这些工具能辅助创建.bib文件。
https://libguides.rhul.ac.uk/c.php?g=380520&p=2577411

步骤

1、创建.bib文件(我是一个一个附近进去的,你可以选择上面提到的工具)
接下来就在.tex文件中操作
2、导言区使用命令\bibliographystyle{}设置参考文献格式 可选项有: plain, unsrt, alpha, abbrv
3、\cite引用文献,\notice不引用但列出文献
4、\bibliography{.bib}在此命令的位置插入参考文献(我将这个放于appendix与acknowledge之间)
5、进行编译tex文件,编译顺序pdflatex .tex; bibtex .aux; pdflatex .tex; pdflatex .tex
编译可以在cmd中进行,如果你配置好IDE,也可以点击IDE进行,我用的Texmaker很不错。

pdflatex与xelatex的区别https://www.cnblogs.com/onemorepoint/p/6992446.html
BibTex使用OverLeaf教程https://www.overleaf.com/learn/latex/Bibliography_management_with_bibtex
BibTex使用https://www.unf.edu/~wkloster/latex/bib.html
BibTex类型https://wenku.baidu.com/view/0f2096643968011ca300916d.html

BibTex的好处:就是一个文献数据库,你可以把你看过的都放进bib文件,但你可以选择哪个文献放到tex中。


如果不使用BibTex,就使用下面的语句,但这个必须放到tex文件中,相当于有多少文献引用多少,不能像BibTex一样灵活。99是指文献个数,可以自行设置个数。

\begin{thebibliography}{99}
\bibitem{1} Higham, N. J. (2020). Handbook of writing for the mathematical sciences. Society for Industrial and Applied Mathematics.
\end{thebibliography}


这篇关于BibTex初次使用的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程