I am writing up my dissertation and have a problem using the dissertation class provided by my university and other students: My references look like
"Jones et al. (2100)Jones,Quantum, and McFly."
The problem goes away when I use a document class that I've used in the past for publication. I have no idea if it's the document class, the style file or other. I've searched online for answers, tried to debug, looking in the style files and document classes and have come to realize that I'm not a savvy enough LaTeX user to figure it out (at least in the timescale I need it figured out!).
Here are my actual codes:
Bogus code
\documentclass[11pt]{gthesis2}
\usepackage{thesis2}
\begin{document}
blah, blah, blah \cite[]{nicholls2004}. M \cite[]{padman1992}
\bibliographystyle{ametsoc}
\bibliography{bibliography}
\end{document}
bogus result
blah, blah, blah [Nicholls et al.(2004)Nicholls, Pudsey, and Morris, ]. M [Padman et al.(1992)Padma ...]
good code
\documentclass[draft,jgrga]{agutex}
\begin{document}
blah, blah, blah \cite[]{nicholls2004}. M \cite[]{padman1992}
\bibliographystyle{ametsoc}
\bibliography{bibliography}
\end{document}
good result
I'm running TeXShop 2.47 on Mac OSX 10.8.5.blah, blah, blah [Nicholls et al., 2004]. M [Padman et al., 1992]
Suggestions would be soooo awesome. Not sure how to attach class or style files but I can provide those if needed.
Thank you!