BibTeX, biblatex and biberCitations are not found

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
ChaseN7
Posts: 3
Joined: Wed Jun 26, 2013 8:31 pm

Citations are not found

Post by ChaseN7 »

Hallo LaTeX community,

I have a big problem with LaTeX. I was working with LaTeX some time ago in school and now I need it for working in the university, but I keep getting the following message.

Code: Select all

Bibtex> I found no \citation commands---while reading file LaTeX1.aux
Bibtex> I found no \bibdata commands---while reading file LaTeX1.aux
Bibtex> I found no \bibstyle commands---while reading file LaTeX1.aux
I'm very desperate. I wasted a lot of time. I also reinstalled Windows on my PC. But the Massage keeps popping up.
When I say to TeXnicCenter not to use BibTeX in this profile, an other error occurs when I try to display the text. Also the Ccde I wrote (copied) is correct.

Has someone an idea?

(Sorry for the bad English. I'm not from US/GB and kind of upset :( )

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

kaiserkarl13
Posts: 707
Joined: Tue Mar 25, 2008 5:02 pm

Citations are not found

Post by kaiserkarl13 »

Without seeing what you typed, it's hard to be certain---please provide a Infominimal working example.

It sounds like BibTeX is trying to tell you what's wrong: you didn't use any \cite commands anywhere, so there are no bibliographic references to process.
ChaseN7
Posts: 3
Joined: Wed Jun 26, 2013 8:31 pm

Citations are not found

Post by ChaseN7 »

This is my current code.

Code: Select all

\documentclass[12pt]{article}

\begin{document}
Hello World
\end{document}
But now I uninstalled all Programms again and installed the LyXpackage (means a bundle of programms including miktex and LyX in one Setup) on my SSD and than TeXnicCenter (before i uninstalled it, it was installed on another HDD). Now I can bring out a PDF file (but no DVI). The three errors are still there.

Unfortunately I cannot copy the error code from the output box. Would it be helpful? Or can I post some reports from my program here? I don't know anything about this program so it would be nice if someone could guide me through.

Thanks for the reply :)
Last edited by ChaseN7 on Thu Jun 27, 2013 1:52 pm, edited 3 times in total.
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Citations are not found

Post by localghost »

ChaseN7 wrote:[…] Unfortunately I cannot copy the error code from the output box. […]
All error messages and other relevant information can be found in the compiler log (*.log) and the BibTeX log (*.blg). They are located in the same directory as your source code (*.tex). You can attach them to your next post by upload to the forum server.


Best regards and welcome to the board
Thorsten
ChaseN7
Posts: 3
Joined: Wed Jun 26, 2013 8:31 pm

Re: Citations are not found

Post by ChaseN7 »

Thank you for the information! And here are the files.
Attachments
LaTeX1.log
(2.67 KiB) Downloaded 307 times
LaTeX1.blg
(288 Bytes) Downloaded 275 times
kaiserkarl13
Posts: 707
Joined: Tue Mar 25, 2008 5:02 pm

Citations are not found

Post by kaiserkarl13 »

BibTeX is telling you it couldn't find any citations because you didn't put any citations in.

If all you have is

Code: Select all

\documentclass[12pt]{article}

\begin{document}
  Hello World
\end{document}
The you don't need to run BibTeX. So don't do it and it will solve your problem.

If you want a bibliography, add the \cite, \bibliographystyle, and \bibliography commands first, then run LaTeX, then run BibTeX
Post Reply