Wrapper to LaTeX natbib package
Timothy Rice 25cb147ff6 Add ksfh_nat style | 6 years ago | |
---|---|---|
LICENSE.md | 8 years ago | |
README.md | 8 years ago | |
habib.sty | 6 years ago |
Habib (حبيب), meaning friend in Maltese, is a wrapper for LaTeX's natbib package.
It sets default options to friendly values and also lets you set the
bibliographystyle as a package option (plainnat
by default).
Furthermore, you can pass citeall
as a package option, to save
typing \nocite{*}
when you're just trying to test things out.
On Unix:
ln -sv /path/to/habib/habib.sty ~/texmf/tex/latex/
\RequirePackage{filecontents}
% bibliography file
\begin{filecontents}{main.bib}
@book{knuth-texbook-1986,
title={The {\TeX}book},
author={Knuth, Donald and Bibby, Duane},
volume={1993},
year={1986},
publisher={Addison-Wesley Reading, Mass.}
}
\end{filecontents}
\documentclass{article}
\usepackage[citeall]{habib}
\begin{document}
\bibliography{main}
\end{document}