bibliography
Personal bibliographic database in Bibtex format. Managed with bibtool.
- To sort run
make sort
How to use in LaTeX documents?
The bibliography style is set with \bibliographystyle{stylename}
and the bibliography file is imported with \bibliography{bibfile}
.
Here bibfile
is the name of the bibliography .bib
file, without the extension and stylename
is one of the following:
abbrv
acm
alpha
apalike
ieeetr
plain
siam
unsrt
\documentclass[12pt]{article}
\bibliographystyle{alpha}
\title{Some Document}
\begin{document}
\maketitle
\section{Hello}
Hello World
\bibliography{bibfile}
\end{document}
After that compiling is done with following four steps -
pdflatex document.tex
bibtex document.aux
pdflatex document.tex
pdflatex document.tex