如何使用 APA 样式编码间接引用,如下所示: https://library.csp.edu/c.php?g=982644&p=8146056
(Smith,2015,引自 Jonson,2019)。
我想引用一位作者使用从世界银行检索的数据制作的图表。
谢谢
答案1
该natbib
软件包提供了一个替代的引文命令\citealp
,\citep
该命令删除了括号,但保留了引文标注的内部格式。因此,要生成引文,您可以在手动提供的括号内使用这两个命令。实际上有一个natbib
宏可以插入括号:\citetext
。使用它而不是自己输入括号的一个可能优势是,它将自动调整为所选的括号样式(圆括号还是方括号)。
\begin{filecontents}{\jobname.bib}
@article{Niyogi1997,
author = {P Niyogi and Rc Berwick},
journal = {Linguistics and Philosophy},
pages = {697-719},
title = {Evolutionary Consequences of Language Learning},
volume = {20},
year = {1997}}
@book{Chomsky1957,
address = {The Hague},
author = {Noam Chomsky},
publisher = {Mouton},
title = {Syntactic Structures},
year = {1957}}
\end{filecontents}
\documentclass{article}
\usepackage{natbib}
\bibliographystyle{apalike}
\begin{document}
This is a citation (\citealp{Chomsky1957} as cited in \citealp{Niyogi1997})
% alternative version:
% \citetext{\citealp{Chomsky1957} as cited in \citealp{Niyogi1997}}
\bibliography{\jobname}
\end{document}