I am creating a IEEE paper, but all my references are displayed as [?]. Why is that? What can I do to get the references properly typeset?
Here is my code:
\documentclass[twocolumn,twoside]{IEEEtran}
\usepackage{cite}
\begin{document}
\title{DDD}
\author{AAA}
\maketitle
\begin{abstract}
hhh
\end{abstract}
\section{Introduction}
hghg \cite{vvv}
\bibliographystyle{IEEEtran}
\bibliography{myreference}
\end{document}
and here is my .bib file:
@article{vvv,
author = {xxx},
title = {cryptography},
journal = {dddd},
year = {2012},
volume = {CS},
number = {04},
pages = {161}
},
[1]-- if I run LaTeX, BibTeX, and LaTeX twice more on your code. – Mico Jan 06 '14 at 06:56