Code: Select all
\begin{filecontents}{men.bib}
@ARTICLE{Lewis2009,
author = {Dustin A. Lewis},
title = {Unrecognized Victims: Sexual Violence Against Men in Conflict Settings Under International Law},
journal = {Wisconsin International Law Journal},
year = {2009},
volume = {27},
pages = {1--49},
keywords = {book},
shorttitle = {2009},
number = {1}
}
@BOOK{ICRC2008,
title = {How is the Term \enquote{Armed Conflict} Defined in International Humanitarian Law? Opinion Paper},
author = {{International Committee of the Red Cross}},
keywords = {book},
shorttitle = {2008},
shortauthor = {ICRC},
date = {2008-03-17},
url = {http://www.icrc.org/eng/assets/files/other/opinion-paper-armed-conflict.pdf},
urldate = {2013-02-05}
}
\end{filecontents}
\documentclass[a4paper,12pt,bibtotoc,british]{scrartcl}
\usepackage[british]{babel}
\usepackage[utf8]{inputenc} %Zeichencodierung
\usepackage[style=english]{csquotes} % ermöglicht Befehl \enquote{} für Zitate
\usepackage[T1]{fontenc}
\usepackage{lmodern} % schönere Schrift
\usepackage[
backend=biber,
citestyle=verbose-ibid,
bibstyle=verbose,
dashed=false,
block=none,
dateabbrev=false,
alldates=long,
pagetracker=true,
citetracker=constrict,
ibidtracker=constrict
]{biblatex}
\addbibresource{men}%
\DeclareFieldFormat{shorttitle}{\fontnormal{#1}}
\begin{document}
bla\footcite[See][3]{ICRC2008} bla\footcite[58]{Lewis2009} bla\footcite{ICRC2008}
\end{document}
shorttitle
field to cite articles and books as shortauthor
, year
. Unfortunately, the title field for books has to be in italics, which means that the shorttitle is also printed in italics. It shouldn't, though. Including \DeclareFieldFormat{shorttitle}{\fontnormal{#1}}
in the preamble didn't help. How can I change that?I am using TeX Live with TeXmaker, biblatex and Biber.
Thanks a lot!
Cheers, Buchling