BibTeX, biblatex and biberHow to typeset in-Text secondary citation i.e. Example (2005, as cited in Doe, 2010, p.3) in APA style

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
asldkfjasioa
Posts: 1
Joined: Wed Sep 22, 2021 2:21 pm

How to typeset in-Text secondary citation i.e. Example (2005, as cited in Doe, 2010, p.3) in APA style

Post by asldkfjasioa »

I am using biblatex with a biber backend and would like to output an in-text secondary citation that looks like

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!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Post Reply