我想在文本中引用一段引文,但引文的作者与书的作者不同。我可以只引用书,而不引用原作者吗?有没有一种方法可以在引文中引用“正确的”作者,而不添加参考书目?
答案1
我的建议是引用原文,但要标记为引用自或者引用无论您咨询什么来源。biblatex
都包含quotedin
用于此目的的字符串。
平均能量损失
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book{packer:1991,
author = {Packer, J. I.},
title = {Among God's Giants},
subtitle = {The Puritan Vision of the Christian Life},
location = {Eastbourne},
publisher = {Kingsway},
date = {1991}
}
\end{filecontents}
\usepackage[australian]{babel}
\usepackage{csquotes}
\usepackage[style=verbose]{biblatex}
\addbibresource{\jobname.bib}
\SetCiteCommand{\autocite}
\begin{document}
\null\vfill
Richard Baxter writes
\blockcquote[\bibstring{quotedin}][91]{packer:1991}[.]{If heaven be too high
for you to think on, and to provide for, it will be too high for you ever to
possess}
\printbibliography
\end{document}