it is seven in the morning and I am still awake, trying to set up my tex document so that I can finally start working. Before I give up, I'd like to ask you guys what I am doing wrong.
I should note that I started using latex today, and so far everything works fine, except bibtex, and I would like to get it working now to avoid doing additional work later on.
As the title says, I use Texworks.
Here is my minimized tex file:
Code: Select all
\documentclass[12pt,a4paper]{article}
\begin{document}
\newpage
\tableofcontents
\newpage
\section{Section}
\newpage
\subsection{Subsection}
\newpage
\nocite{*}
\bibliography{blabla}
\bibliographystyle{plain}
\end{document}
Code: Select all
@BOOK{DUMMY:1,
AUTHOR="John Doe",
TITLE="The Book without Title",
PUBLISHER="Dummy Publisher",
YEAR="2100",
}
I run Texworks with pdfLatex+MakeIndex+BibTex, so BibTex should run...I also tried "compiling" the bib file seperately with TexWorkx, i.e. I opened it in Texworks and tried to build it. If I did it with just BibTex, I got no error message or anything, it seemed to go through the file without problem.
When I ran it with pdfLatex+MakeIndex+BibTex, I get the following:
Code: Select all
This is pdfTeX, Version 3.14159265-2.6-1.40.16 (MiKTeX 2.9 64-bit)
entering extended mode
(C:/Users/ge0rg/Desktop/searle/bib.bib)
*
I don't know if that is supposed to happen.
Up to this point I was really amazed how effortless Latex makes formatting and everything, and I was not expecting this setback. I tried to find a solution for 3 hours now, so I'm counting on you

I go to sleep now, good night!