I have a problem with getting a shorttitle field in my footnote. I am using Biblatex and here is my MWE:
Code: Select all
\documentclass[a4paper,11pt]{scrartcl}
\usepackage[latin1]{inputenc}
\usepackage{csquotes}
\usepackage{blindtext}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book{iustinus1997,
Address = {Berlin/New York},
Author = {{Iustinus Martyr}},
Call-Number = {EgI180},
Date-Added = {2010-10-13 09:19:34 +0200},
Date-Modified = {2010-10-13 09:21:42 +0200},
Editor = {Miroslav Marcovich},
Publisher = {Walter de Gruyter},
Series = {Patristischen Texte und Studien},
Shortauthor = {Iust.},
Shorttitle = {De Tryph.},
Title = {Iustini Martyris dialogus cum Tryphone},
Volume = {47},
Year = {1997}}
\end{filecontents}
\usepackage[ngerman]{babel}
\usepackage[style=authoryear, hyperref=true]{biblatex}
\bibliography{\jobname}
\begin{document}
\blindtext\footnote{\citename{iustinus1997}{shortauthor}}
\blindtext\footnote{\citename{iustinus1997}{shorttitle}}
\printbibliography
\end{document}
This is what I am getting as an result:
Anyone knows why?