General ⇒ newbie: natbib style file in LaTeX
newbie: natbib style file in LaTeX
I am relatively new to LaTeX and have been fumbling my way around it for the last couple of days. I would like to use the natbib style files (abbrvnat, plainnat, and unsrtnat) written by Patrick Daly but without much success. The editor I am using is TeXnicCenter. I can see all three .bst file in my MiKTeX 2.6 directory and have used
\citet{key}
\bibliography{mybibfile}
\bibliographystyle{plainnat}
I have also tried the other two (abbrvnat and unsrtnat) but with no success. Am I missing something obvious?
Your help is greatly appreciated.
Regards,
Sorn
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- pumpkinegan
- Posts: 91
- Joined: Thu May 03, 2007 10:29 pm
Re: newbie: natbib style file in LaTeX
Re: newbie: natbib style file in LaTeX
\begin{thebibliography}{0}
\providecommand{\natexlab}[1]{#1}
\providecommand{\url}[1]{\texttt{#1}}
\expandafter\ifx\csname urlstyle\endcsname\relax
\providecommand{\doi}[1]{doi: #1}\else
\providecommand{\doi}{doi: \begingroup \urlstyle{rm}\Url}\fi
\end{thebibliography}
And if I use the plain style
\bibliographystyle{plain}
it allworks OK producing a .bbl like this:
\begin{thebibliography}{1}
\bibitem{Conway2000}
Damian Conway.
\newblock {\em Object {O}riented {P}erl: {A} comprehensive guide to concepts
and programming techniques}.
\newblock Manning Publications Co., Connecticut, USA, 2000.
\bibitem{Huetal2000}
A.~Jennings J.~Hu, H. R.~Wu and X.~Wang.
\newblock Fast and robust equalization: A case study.
\newblock In {\em Proceedings of the World Multiconference on Systemics,
Cybernetics and Informatics, (SCI 2000), Florida, USA, 23-26 July 2000},
pages 398--403, FL, USA, 2000. International Institute of Informatics and
Systemics.
\bibitem{Meyer2000}
Bernd Meyer.
\newblock A constraint-based framework for diagrammatic reasoning.
\newblock {\em Applied Artificial Intelligence}, 14:327.
\end{thebibliography}
I have problems when I try to go for a more complicated style file.
Thanks
Sorn
Re: newbie: natbib style file in LaTeX
\usepackage{natbib}
Then
\bibliographystyle{plainnat} or the other two abbrvnat and unsrtnat
Gotta load the package first!