Link to home
Start Free TrialLog in
Avatar of InteractiveMind
InteractiveMindFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Bibtex in TeXnicCenter

Hello, I'm attempting to add references to my paper using Bibtex, but it's acting strangely. So let's consider the very simplest example:

% Test.tex
\documentclass{article}
\begin{document}
\bibliographystyle{plain}
\bibliography{Master}
\end{document}

and a BibTex file:

% Master.bib
@BOOK{texbook,
   author = "Donald E. Knuth",
   title= "The {{\TeX}book}",
   publisher = "Addison-Wesley",
   year = 1984
   }

@BOOK{latexbook,
   author = "Leslie Lamport",
   title = "{\LaTeX \rm:} {A} Document Preparation System",
   publisher = "Addison-Wesley",
   year = 1986
   }

When I compile this (twice) in TeXnicCenter from LaTeX => PDF, the resulting PDF has 'References', but then the actual references themselves are not listed.

Any ideas why this is?

Thank you!
ASKER CERTIFIED SOLUTION
Avatar of boocko
boocko
Flag of Slovenia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of InteractiveMind

ASKER

Ah yes, you are right. I was hoping that solving this problem would solve my more pressing issue though, but it does not.

So I've created a new thread with my REAL question. I'd appreciate it if you took a look:

https://www.experts-exchange.com/questions/26263205/Bibtex-adding-unexpected-references.html

Thank you very much
Thank you. Please see my new thread though!