I am new to Latex. I am trying to put the references as well as cite them. I am doing the following:
1. Created a refer.bib file with following content
@String{j = {Journal}}
@String{jof = {Journal of}}
@String{procof = {Proceedings of}}
@misc{erec04,
author = {European Renewable Energy Council},
title = {{Renewable Energy Scenario to 2040}},
howpublished = "\url{http://www.erec.org/fileadmin/erec_docs/Documents/Publications/2040Exec_Sum.pdf}",
year = {2004},
note = "[Online; accessed 07-Mar-2013]"
}
2. Then i used the following lines in my main.tex
\usepackage{cite}
\bibliography{refer}
3. Then i tried to cite as following:
During smooth pursuit\cite{erec04}
But in the pdf version i just saw the following
During smooth pursuit[?]
Please suggest me how to do it properly?
pdflatexbibtexpdflatexthenpdflatexagain? – Adam Liter Mar 22 '14 at 15:17Texmakerand trying to read the references fromrefer.bibfile. After compilation, apdf viewwindow opens – skm Mar 22 '14 at 15:19F6to start pdflatex, andF11to start bibtex. – Johannes_B Mar 22 '14 at 15:28pdflatex, then withbibtex, then withpdflatex, and then withpdflatexagain. @Johannes_B pointed out the key bindings in TeXMaker, so you should hitF6F11F6and thenF6again. That should work. – Adam Liter Mar 22 '14 at 15:36