General ⇒ Using Bibetex
-
- Posts: 30
- Joined: Fri Nov 23, 2007 12:56 am
Using Bibetex
I am new to the bibtex tool, I do not know how to use it. I want to add the references automatically since I was coping the references into sty file and then reading from it.
Thanks in advance
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Using Bibetex
However, I'll explain the basic idea:
1) You store all your bibliographic items in one (or several) databases (files with extension .bib). Here you can find an example of a typical database.
2) In your .tex main file you use the commands
Code: Select all
\bibliographystyle{style}
Code: Select all
\bibliography{database}
3) You must process your .tex file in the following way:
(pdf)LaTeX+BiBTeX+(pdf)LaTeX
-
- Posts: 30
- Joined: Fri Nov 23, 2007 12:56 am
Re: Using Bibetex
Using Bibetex
What command is needed in the .bib file?
I use: \begin{bibliography} and \end{bibliography} but it does not seam to work and according to the web page http://www.xm1math.net/texmaker/faq.html it is necessary to change a default command in order to make BiBTeX work, but I don't know how.
Some help would be very usefull
Thanks