I use natbib, \bibliographystyle{apalike}.
When I reference websites from institutions in the text, I would like the acronyms of those institutions to show, for example
.(NERC, 2009)
In my bibliography however, I would like the institution's full name to appear, e.g.
I've tried to specify a new comand without success. At the start of my *.bib I haveNatural Environment Research Council, 2009, etc...
Code: Select all
@preamble{"\def\shortref#1{}"}
Code: Select all
@misc{NERC09,
author = " Natural Environment Research Council\shortref{NERC}",
Code: Select all
\newcommand{\shortref}[1]{#1}
Code: Select all
\citep{NERC09}
Code: Select all
\shortref{NERC09}
but to no avail.
Could anyone tell me where I'm going wrong or simply another way?
Thanks!