[Tex/LaTex] Looking for a template which reference paper has a title

bibliographiesbibtex

I guess this question has been asked several times but still I did not find a solution 🙁

I used the template for physical review A, \bibliographystyle{spphys}, which the reference paper only has author name, journal title, volume, page e.g.

XXX, Phys. Rev. Lett. XX, XX (XXXX)

I need a template that could display the title of the quoted paper. e.g.

XXX, title, Phys. Rev. Lett. XX, XX (XXXX)

Where can I find such a template? and/or bst file?

Best Answer

Almost all the bibliographic BibTeX styles show the article title. You must have many of them already installed in you TeX distribution. Try simply to change spphys with plain or alpha, vancouver, chicago etc. For a complete list of available styles in you hard disk, you only need search files with .bst extension.

Help for Choosing a BibTeX Style by examples can be obtained of the Web here and there.Or you can search those that meet your requirements playing with a minimal working example (MWE):

\documentclass{article}
\begin{document}
 An interesting citation 
 \cite{IEEEexample:article_typical}
\bibliographystyle{plain}
\bibliography{IEEEexample}
\end{document}

MWE

Related Question