I'm currently trying to reference my dissertation. I have created a file called reference.bib and have used the tools in bibtex to create a list of sources that I have used.
I have tried to integrate these references into my work (written in texmaker) but the reference is coming up like this (??) and when I put this command,
\bibliographystyle{plain}
\bibliography{reference}
\end{document}
nothing is showing up? Can anyone explain what I'm doing wrong - this is the first time I've used tex? Thank you
But when I use this command
\bibliographystyle{plain} \bibliography{reference.bib}
just before \end{document} nothing shows up. And where I've tried to reference something, for example "....... \ref{curvedef} I just get a question mark, and I don't understand why
– Sarah Jayne Mar 09 '14 at 14:00.texfile open, the sequence you require is : run LaTeX, run BibTeX, run LaTeX, run LaTeX: all should have the 'main file' as the focus. It's only on the last run that any citations will be fully resolved. (I presume you have one or more\citecommands in the document.) – Joseph Wright Mar 09 '14 at 14:14dissertation.tex. Run the commandspdflatex dissertation,bibtex dissertation,pdflatex dissertation,pdflatex dissertationsequentially. – Oliver Mar 09 '14 at 14:21