I am completely new at using BibTeX for referring and citations, I used to include the reference list in the tex file everytime. Now I would like to modernise myself i little bit.
As I am totally new at this I read this page:
I followed EXACTLY the steps in there: I created a .bib-file with the following:
@misc{ Nobody06,
author = "Nobody Jr",
title = "My Article",
year = "2006" }
and then I created the following tex-file:
\documentclass[11pt]{article}
\usepackage{cite}
\begin{document}
\title{My Article}
\author{Nobody Jr.}
\date{Today}
\maketitle
Blablabla said Nobody ~\cite{Nobody06}.
\bibliography{mybib}{}
\bibliographystyle{plain}
\end{document}
I generate the pdf and nothing shows up: Just [?] and no reference at the end.
I am wondering, what can go wrong in such simple procedure? Thank you very much for any hints you may have!


bibtexas well? You need to compile withpdflatex, thenbibtex, thenpdflatextwice. Edit: See e.g. Question mark instead of citation number – Torbjørn T. Mar 12 '15 at 08:09.blg) file: does it report any errors? – Joseph Wright Mar 12 '15 at 09:35