been trying too long now on this: I would like to enclose e.g. the following text:
(cit. Doe, Commercial Laws) [name in smallcaps]
in the end of each of my entries in the bibliography before the period, e.g.:
Doe John, Commercial Laws of Canada, Toronto 1999 (cit. Doe, Commercial Law). [name in smallcaps]
Using biblatex and biber, I found the following and put in in the preamble of my *.tex file:
\renewbibmacro*{begentry}{
\printtext[parens]{
\unspace{cit. }\printnames{shortauthor}\addcomma\addspace\printfield{shorttitle}\unspace
\printnames{shorttitle}}
}
This generates (position in the beginning instead of the end!):
(cit. Doe, Commercial Laws) Doe John, Commercial Laws of Canada, Toronto 1999.
Does anyone have a solution to my problem? Also, is it possible to generate shortauthor and shorttitle with biblatex without defining these labels in the *.bib file?
