General ⇒ How can I make reference list on TeXnicCenter
How can I make reference list on TeXnicCenter
I searched online, seems like I can use BibTex. I am a little confused. Seems like there is a database. I can just use the database, I dont need to input the information (author, journal...) for each paper. Is that true? Or should I type all the informations by myself?
Where can I find the database if there is one.
I tried to use "begin{thebibliography} bibitem " to input by myself, it didnt look nice
Thank you
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Re: How can I make reference list on TeXnicCenter
"@book{goossens93,
author = "Michel Goossens and Frank Mittlebach and Alexander Samarin",
title = "The Latex Companion",
year = "1993",
publisher = "Addison-Wesley",
address = "Reading, Massachusetts"
}
"
But because I wrote above code in Notepad, it is a txt file, not a bib file. I dont know how to insert it in the Latex as follows
\bibliographystyle{plain}
\bibliography{sample}
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
How can I make reference list on TeXnicCenter
Just rename it from sample.txt to sample.bib and use it with the commands you already inserted in your source code.gcheer3 wrote:[...] But because I wrote above code in Notepad, it is a txt file, not a bib file. I dont know how to insert it in the Latex as follows [...]
Best regards
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: How can I make reference list on TeXnicCenter
I already download a bib file, I named it as mysampel
Now I have a new problem. I used as follows:
\begin{frame}
\bibliographystyle{plain}
\bibliography{mysampel}
\end{frame}
there is no error from TexnicCenter. But the pdf showed a blank page for this commend. there is nothing on that page.
the warnings are like this:
this is bibtex, version 0.99c (Miktex 2.7)
The top-level auxiliary file:\parctice.aux
The style fiel: plain.bst
I found no \citation commands while reading file \practice.aux
so what does it mean? how can I use citation commands
Re: How can I make reference list on TeXnicCenter
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
How can I make reference list on TeXnicCenter
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: How can I make reference list on TeXnicCenter
What do you mean compile twice. Everytime I run a code. I go to the menu bar "build current file". Then I go to 'build---output', Then the pdf file is generated. So do you mean I have to 'build burrent file twice'? It still didnt work
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
How can I make reference list on TeXnicCenter
Code: Select all
latex foo.tex
bibtex foo.tex
latex foo.tex
latex foo.tex
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
How can I make reference list on TeXnicCenter
Code: Select all
\nocite{book1,book2,book3}
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
How can I make reference list on TeXnicCenter
Code: Select all
This is bibtex, version 0.99c (Miktex 2.7)
The top-level auxiliary file:\parctice.aux
The style file: plain.bst
I found no \citation commands while reading file \practice.aux
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10