Closed hvoss49 closed 11 months ago
Yes, @patent
location
is one of the few instances in the standard biblatex
styles that explicitly override an option like this. (Presumably because the patent location is so important that it should not be abbreviated?)
See line 520 in the following excerpt
If you try another combination, for example @(mv)book
and publisher
or location
you get shortened lists
\documentclass{article}
\pagestyle{empty}
\usepackage[ngerman]{babel}
\usepackage[style=authoryear,maxitems=1]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
\nocite{nietzsche:ksa} \printbibliography
\end{document}
gives
Nietzsche, Friedrich (1988). Sämtliche Werke. Kritische Studienausgabe. Hrsg. von Giorgio Colli und Mazzino Montinari. 2. Aufl. 15 Bde. München u.a.: Deutscher Taschenbuch-Verlag u.a.
Understood ... thanks
From what I read in the documentation,
maxitems=1
should only print the first location and then theandother
string. But there is no difference in the output.