我想使用 biblatex 在文中写入:(Piaget,1954;尽管参见 Baillargeon 1985、1987),但我不确定如何在参考文献之间添加单词。我试过:
\parencite[though see]{piaget1955child, baillargeon1985object, baillargeon1987object}
但这包括所有引文末尾的“虽然看到”,而不是中间的。我也尝试了\parentext
和\cite
等的复杂组合,但想知道是否有更快的解决方案。
答案1
使用多重引用命令\parencites
\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[style=authoryear-comp, backend=biber]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
\parencites{sigfridsson}[though see][]{knuth:ct:a,knuth:ct:b}
\parencites{sigfridsson}[though see][]{knuth:ct:a}{knuth:ct:b}
\printbibliography
\end{document}