I am using a latex template (class) to write my thesis but I get a weird output for the references at the end of the thesis. For instance, if I use something like this in the bib file:
@article{hh1952,
title={A quantitative description of membrane current and its application to conduction and excitation in nerve},
author={Hodgkin, A.L. and Huxley, A.F.},
journal={The Journal of Physiology},
year={1952}
}
I get the following output:

Simply, the title of the papers is not shown but book titles are just fine.
This is all what I found in the template file about bibliography:
% Redefine \thebibliography to go to a new page and put an entry in the
% table of contents
\let\@ldthebibliography\thebibliography
\renewcommand{\thebibliography}[1]{%
\newpage
\addcontentsline{toc}{chapter}{Bibliography}
\@ldthebibliography{#1}
}
%\let\@ldbibliography\bibliography
%\renewcommand{\bibliography}[1]{\ifprint@bib\@ldbibliography{#1}\fi}
I wonder if it is just a matter of style or it is a bug of the class that I am using? How can I fix the problem?
Update:
The .bbl file contains the title:
\bibitem{hh1952}
A.L. Hodgkin and A.F. Huxley.
\newblock A quantitative description of membrane current and its application to
conduction and excitation in nerve.
\newblock {\em The Journal of Physiology}, 1952.
\bibliographystylecommand in the file, but have a look at my update. – Mohsen Jul 8 '12 at 21:33.auxfile: look for\bibstyle. It's probably set in the class. – egreg Jul 8 '12 at 21:39\bibstyle{rmp2}– Mohsen Jul 8 '12 at 21:41rmp2.bstin the package. You can find a copy of the file here: math.ualberta.ca/~mroberts/resources/thesis/rmp2.bst – Mohsen Jul 8 '12 at 21:49