When writing, I like to introduce an abbreviation for the whole citation. On the first instance, I would write "This is true as shown in (nbren12, et. al. 2012) (hereafter NB12)". In the subsequent usages, I would just say "This fact is true (NB12)". How can I implement this automatically using bibtex (or biblatex)?
This is similar but not identical to this question.
Best Answer
It is described clearly in the manual of
natbib
on page 3.Use command:
After that, in addition to classic citing
\citet{}
or\citep{}
, you can also use:Example
In
example.tex
I have:and in
mybib.bib
I have:and the output is:
And if you want the alias to appear in e.g. italics, but not page numbers etc. you can write e.g.
\defcitealias{jd14}{{\itshape JD14}}
.