I'm quite new to LaTeX and am finding it a bit tricky! I'm submitting a report and want my refs in a very specific format:
I am referencing a fact [1]
[1] A. Author et. al, Phys. Rev. B, 24, p.149, (2012)
I couldn't find a standard .bst file for this so created my own using the tool: CMD latex makebst
I'm struggling to get it to work though.
It is saved in ~\bibtex\bst and ~\bibtex\bst\natbib as MyStyle.bst
and the tex file has:
Code: Select all
\documentclass[12pt]{report}
\usepackage[numbers]{natbib}
\citestyle{nature}
\bibliographystyle{MyStyle}
\bibliography{References}
\end{document}
Thanks in advance for your help!