- #1
Saladsamurai
- 3,020
- 7
I am looking through all sorts of tutorials and I could swear I am doing this right. But obviously not. The source code compiles and generated the PDF just fine, but no citation number shows up (just ?? in stead) and no bibliography section is generated.
Here is a sample code. I know the preamble is obnoxious, but I inherited it from someone else.
This is the contents of the bibtex file named ref1.bib I created it and saved it as a .bib file. Did I need to do anything else with it? Like 'run' it or something?
Here is a sample code. I know the preamble is obnoxious, but I inherited it from someone else.
Code:
%*****************************************PREAMBLE*********************************
%*******************************CLASSES/PACKAGES*******************************
\documentclass[11pt]{article}
\usepackage{geometry} % See geometry.pdf to learn the layout options. There are lots.
\geometry{letterpaper} % ... or a4paper or a5paper or ...
%\geometry{landscape} % Activate for for rotated page geometry
%\usepackage[parfill]{parskip} % Activate to begin paragraphs with an empty line rather than an indent
\usepackage{graphicx}
\usepackage{amssymb}
\usepackage{epstopdf}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{setspace} %allows line space too be changed w/in document
\usepackage{times} %change default font to times new roman
\usepackage{indentfirst} %indent 1st line of paragraph after new section
\usepackage{textcomp}
\usepackage{tocbibind}
%No idea what this does
\DeclareGraphicsRule{.tif}{png}{.png}{`convert #1 `dirname #1`/`basename #1 .tif`.png}
%*****************************************TWEAK OVERALL PAGE LAYOUT*******************************
%change default line spacing: double space = 1.6 And 1.5 space = 1.3 <--go figure
\linespread{1.6}
%number equations according to section number
\numberwithin{equation}{section}
\setlength\textheight{7.7in}
\setlength\textwidth{6.5in}
% Left margin on odd numbered pages + 1 inch
\setlength\oddsidemargin{0in}
% Left margin on even numbered pages + 1 inch
\setlength\evensidemargin{0in}
% Amount of indentation at the first line of a paragraph
\setlength\parindent{0.25in}
% Distance between paragraphs (Any time LaTeX sees a blank line, it treats the next line as the start of a new paragraph)
%\setlength\parskip{0.25in}
%*****************************************MAIN DOCUMENTt*******************************
\begin{document}
I am trying to cite this article number \cite{Zurek}
\clearpage
\bibliographystyle{plain}
\bibliography{ref1}
\end{document}
This is the contents of the bibtex file named ref1.bib I created it and saved it as a .bib file. Did I need to do anything else with it? Like 'run' it or something?
Code:
@ARTICLE{Zurek,
AUTHOR = {Zurek, R. W. and Martin, L. J.},
TITLE = {Interannual Variability of planet-encircling dust activity on {M}ars},
YEAR = {1993},
JOURNAL = jgr,
VOLUME = {98},
NUMBER = {E2},
PAGES = {3247--3259}
}