Das nicht-funktionierende habe ich unten auskommentiert.
% bcite.tex \RequirePackage[immediate]{silence} \WarningFilter{latex}{File `bcite.bib' already exists on the system} \begin{filecontents}{bcite.bib} @INBOOK{gerrish, hyphenation= {german}, location = {Chichester}, edition = {6th ed.}, title = {Interviewing}, language = {Englisch}, pages = {345-357}, booktitle = {The research process in nursing}, publisher = {Wiley-Blackwell}, author = {Tod, A.}, editor = {Gerrish, K. and Lacey, A.}, date = {2011} } \end{filecontents} \documentclass{scrartcl} % ----------------------------------------------- % | Block-Zitate | % ----------------------------------------------- \usepackage[thresholdtype=words,threshold=39]{csquotes} \renewcommand{\mkblockquote}[4]{\textooquote#1#2\textcoquote#4#3} \newenvironment{myquote} { \setlength{\leftmargini}{\parindent} %Einrückung von quotes \quote\sffamily } { \unskip \endquote } \SetBlockEnvironment{myquote} \usepackage[ backend=biber, style=apa, sortlocale=de_DE, language=german % notwendig, da nicht babel verwendet wird ]{biblatex} \DeclareLanguageMapping{german}{german-apa} % definiert das automatisch generierte ``und andere'' ins coolere ``et al'' um \DefineBibliographyStrings{german}{andothers = {{et\,al\adddot}}} \addbibresource{bcite.bib} \begin{document} Das Zitat \blockquote[\cite{gerrish}]{Bla bla bla?} %\blockquote[\cite[3]{gerrish}]{Bla bla bla?} ist ein Beispiel. \end{document}
\newcommand{\myGerrish}{\cite[3]{gerrish}} \blockquote[\myGerrish]{Bla bla bla?}
Es gibt doch sicherlich ne Lösung, um den mutmaßlichen Konflikt dieser Klammern zu lösen?