Is there a possibility to change biblatex's maxnames option in the middle of the document?
Background: I am including a list of my own publication at the end of my thesis. I include also some papers where I am not the first author, so I need to show the full list of authors here.
The most helpful comments I found are in this question.
As far as I understand:
Using the options field in the .bib file won't work without some additional work and duplication of entries in the bib file, since I might cite the same article in the main document (where I want to have only maxnames displayed at maximum) and in my publications list (where I need full author list.
Duplicating my own articles into a second file would be possible. I'd still prefer a pure biblatex solution without the need to adapt the .bib file. If that is the only way, though, I'd need advice on how to get this to work as well.
Many thanks in advance!
Regards, Andreas
Here is the MWE:
\documentclass{article}
\usepackage{biblatex}
\usepackage{currvita}
% just for demonstration
\ExecuteBibliographyOptions{maxnames=3}
\addbibresource{biblatex-examples.bib}
\begin{document}
\section{Main Document}
Here I write about our method \parencite{herrmann}.
\printbibliography
\clearpage
\begin{cv}{Max Mustermann}
%% personal information
\begin{cvlist}{Personal Information}
\item[Date of Birth] 01 March 2013
\item[Place of Birth] Berlin
\item[Nationality] German
\end{cvlist}
%% Publications
%% \ExecuteBibliographyOptions{maxnames=99}
\setlength{\cvlabelwidth}{0mm}
\begin{cvlist}{Publications}
\item \fullcite{herrmann}
\end{cvlist}
\end{cv}
\end{document}

biblatex? – karlkoeller Jan 25 '14 at 09:04\AtNextCitekeyonly affects one citation. It works now. Thanks again. – Andreas Jan 25 '14 at 12:35\AtNextCiteworks as well. Is there a significant difference to\AtNextCitekey? – Dirk Aug 17 '18 at 14:56