Currently in the preamble I have:
\usepackage[
backend=biber,
style=authoryear,
isbn=false,
doi=false
]{biblatex}
My figures´ code looks like:
\begin{figure}
\centering
\includegraphics[width=0.7\textwidth]{Ecore_kernel.pdf}
\caption{Kern-Elemente von Ecore}
\label{Ecore_kernel}
\small{(Eigene Darstellung in Anlehnung an \textcite[S. 124]{Steinberg2009})}
\end{figure}
Which produces a fine output with no errors but the citation looks like:
(Eigene Darstellung in Anlehnung an Steinberg u.a. (2009, S. 124))
Instead of parentheses I need square brackets inside the outer parentheses, like:
(Eigene Darstellung in Anlehnung an Steinberg u.a. [2009, S. 124])
I searched for similar problems and only found this solution which I find a bit too much for this imho simple task. I also read the biblatex documentation which doesn´t offer info on this task regarding \textcite{}.
I thought of a solution like \textcite[brackets][][S. 124]{Steinberg2009} if that is possible.
I hope you have a nice solution :)
\small{\mkbibparens{Eigene Darstellung in Anlehnung an \textcite[S. 124]{Steinberg2009}}}. That is replace the literal parentheses(...)by\mkbibparens{...}. – moewe Jul 11 '15 at 17:15\DeclareCiteCommand{\textcitebrackets}but this nesting feature is the better solution I think:)– Karl Jul 11 '15 at 17:43{\small \parentext{Eigene Darstellung in Anlehnung an \textcite[S. 124]{Steinberg2009}}}? By the way,\smallis a font switch: it does not take an argument. – cfr Jul 11 '15 at 22:02{\small ...}I'm assuming? – cfr Jul 11 '15 at 22:03biblatexcan do that for you automatically, just go with\textcite[124]{foo}. – moewe Jul 12 '15 at 06:48S.I discovered inconsistencies between\parenciteand\textciteso I putS.in\textcitewhere I don´t have to and in\parencitewhere I have to, to get consistency in my .tex-files. – Karl Jul 12 '15 at 14:29\parenciteand\textciteis odd. The normalauthoryearstyle adds the correct page prefix for both (all commands ultimately call\printfield{postnote}). Did you change something more withbiblatex(especially something related topostnote)? – moewe Jul 12 '15 at 14:51