|
Tips for using LaTex to produce your thesis/project documents
[ University Resources | LaTeX | BibTex | Miscellanea ] University resources
LaTeX Master files
Bibtex.bib file. Each reference you cite will have a corresponding entry in this .bib file. These entries will look like:
@article{ansc:1964,
author={Francis John Anscombe},
year={1964},
title={Normal likelihood functions},
journal={Annals of the Institute of Statistical Mathematics},
volume={26},
pages={1--19},
keywords={likelihood},
}
@article{audi:clav:1997,
author={Stephane Audic
and Jean-Michel Claverie},
year={1997},
title={The significance of digital gene expression profiles},
journal={Genome Research},
volume={7},
pages={986--995},
keywords={SAGE, two-sample test},
}
See this site for details regarding other fields you can include.
Notes re: making your bibfile:
natbib for bibliographies. It seems to offer the greatest flexibility with respect to citation styles. In the preamble, include the line:
\usepackage{natbib}
\citet{audi:clav:1997} (for citations within the text) or \citep{audi:clav:1997} (for parenthetical citations). See the natbib reference sheet for additional citation varieties (author only, specific chapter, year only, etc.).
Pseudo text: The Dirichlet process (DP) prior, introduced by Ferguson (1973),
\nocite{ferg:1973} and the Dirichlet process mixture (MDP) prior
\citep{anto:1974}. In recent years, rapid progress in Bayesian
computational methods, reviewed by \citet{mace:1998,esco:west:1998}
\end{document} command, add
\newpage
\newcommand{\bibdir}{\dirdir/gp/bibtex}
\bibliography{\bibdir/bibfile}
\bibliographystyle{\bibdir/rlwjasa}
latex filename.tex bibtex filename.tex latex filename.tex latex filename.tex Miscellaneous LaTex tips
Send an email to Natalie Blades (nblades at stat dot byu dot edu) if you have suggestiong for additions, subtractions, clarifications, corrections, or modifications.
|