Example (2005, as cited in Doe, 2010, p.3),
where (Doe, 2010) is in my bibliography.
The parenthetical version of this can be achieved via
\autocite[][]{}
as demonstrated in the following MWE, but I am not sure how to achieve the in-text version of this:Code: Select all
\RequirePackage{filecontents}
\begin{filecontents*}{mybib.bib}
@book{test1,
address = {City},
title = {{Generic Title}},
publisher = {Doe, Jane},
author = {Doe, Jane},
year = {2010}
}
\end{filecontents*}
\documentclass[
12pt
]{book} % The class file specifying the document structure
% Set the values for the bibliography
\usepackage[
style=apa,
backend=biber,
isbn=false,
url=true,
doi=true,
natbib=true,
eprint=false,
hyperref=true,
backref=false,
firstinits=false
]{biblatex}
\usepackage[utf8]{inputenc}
\usepackage[autostyle=true]{csquotes} % Required to generate language-dependent quotes in the bibliography
\usepackage{xpatch}
% Set language
\DeclareLanguageMapping{american}{american-apa}
\addbibresource{mybib.bib}
\addbibresource{mybib.bib}
\begin{document}
\autocite[Example, 2005, as cited in][p. 3]{test1}
\printbibliography
\end{document}
Thanks!