In my footnotes and bibliography I occasionally have special author names that should not be printed with the usual pattern (Last name, First name).
For example: Athanasius Alexandrinus needs to stay that way because "Alexandrinus" is not his last name but the name of the city in which he was the bishop.
I solved this problem by writing his name as {Athanasius Alexandrinus} in the bibliography. But, now publisher wants me to add small caps to the last names. When I do that this type of special names are also produced in small caps, although they are not last names.
So here is what I get:
Athanasius Alexandrinus in the first footnote needs to stay together but not in small caps.
Here is my MWE:
\documentclass[a4paper,11pt]{scrartcl}
\usepackage[latin1]{inputenc}
\usepackage{csquotes}
\usepackage{blindtext}
\usepackage{filecontents}
\usepackage{hyperref}
\hypersetup{
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=black,
urlcolor=black
}
\begin{filecontents}{\jobname.bib}
@incollection{athanasius1857,
Address = {Parisiis},
Author = {{Athanasius Alexandrinus}},
Booktitle = {Patrologiae cursus completus: Series Graeca},
Editor = {Jacques Paul Migne},
Pages = {37-40},
Publisher = {Accurante J.-P. Migne},
Shortauthor = {Ath.},
Shorttitle = {ep. Marcell.},
Title = {Epistula ad Marcellinum de interpretatione psalmorum},
Volume = {27},
Year = {1857}}
@article{stead1997,
Author = {Christopher Stead},
Journal = {Studia Patristica},
Keywords = {secondary},
Pages = {39-52},
Title = {Was Arius a Neoplatonist?},
Volume = {32},
Year = {1997}}
\end{filecontents}
\usepackage[ngerman]{babel}
\usepackage[style=historische-zeitschrift, maxnames=2, hyperref=true, backref=true, backrefstyle=none, backend=bibtex,idemtracker=true]{biblatex}
\renewcommand*{\mkbibnamegiven}[1]{\normalfont{#1}}% NO ITALIC IN FIRST NAMES
\renewcommand*{\mkbibnamefamily}[1]{\textsc{#1}}% SMALL CAPS IN LAST NAMES
\renewcommand*{\mkbibnameprefix}[1]{\textsc{#1}}% SMALL CAPS IN LAST NAMES
\renewcommand*{\mkbibnamesuffix}[1]{\textsc{#1}}% SMALL CAPS IN LAST NAMES
\DeclareNameAlias{upshape}{given-family}% SMALL CAPS IN LAST NAMES
\AtBeginBibliography{%
\renewcommand*{\labelnamepunct}{\addcolon\space}
\renewcommand*{\multinamedelim}{\addsemicolon\space}
\renewcommand*{\finalnamedelim}{\multinamedelim}
\DeclareNameAlias{sortname}{family-given}
\DeclareNameAlias{default}{family-given}
}
\setlength\bibitemsep{0.46\itemsep}
\bibliography{\jobname}
%
\makeatletter%
\renewbibmacro*{chapter+pages}{%
\printfield{chapter}%
\newunit}%
\renewenvironment{thebibliography}%
{\renewbibmacro*{chapter+pages}{%
\printfield{chapter}%
\setunit*{\addcomma\space}%
\printfield{pages}%
\newunit}}%
\makeatother%
%
\begin{document}
\blindtext\footcite[See][S. 56]{athanasius1857}
\blindtext\footcite[See][S. 22]{stead1997}
\blindtext\footcite[See][S. 56]{athanasius1857}
\printbibliography
\end{document}

