How can I define a new command \citetitleIdem which behaves like \citetitle but not using italics? I am using biblatex with natbib.
I do not want to change the behaviour of \citetitle, therefore this suggestion doesn't apply.
How can I define a new command \citetitleIdem which behaves like \citetitle but not using italics? I am using biblatex with natbib.
I do not want to change the behaviour of \citetitle, therefore this suggestion doesn't apply.
One can use the thefield macro to paste the title. The following correspond to \citetitle and \citetitle*, but put the title without formatting such as italics:
\DeclareCiteCommand{\citetitleIdem}
{\usebibmacro{prenote}}
{\iffieldundef{shorttitle}{\thefield{title}}{\thefield{shorttitle}}}
{\multicitedelim}
{\usebibmacro{postnote}}
\DeclareCiteCommand{\citetitleIdem*}
{\usebibmacro{prenote}}
{\thefield{title}}
{\multicitedelim}
{\usebibmacro{postnote}}
\documentclass{...}and ending with\end{document}. – jub0bs Dec 31 '13 at 18:59