我需要从 APA 引用切换到 Chicago 作者日期。有一件事我找不到,那就是如何在括号内引用其他文本,例如像这样:(请参阅 James 2013 的介绍)
在 APA 中,我可以使用 \nptextcite 来省略括号,但我找不到 biblatex-chicago 包中的类似功能。有人知道解决方案吗?
答案1
据我所知,与 APA 格式不同,芝加哥格式并不要求括号内和括号外的引用有区别。这种区别是 APA 格式的一个特点。
因此,的“等价”biblatex-apa
可能只是:这将为您提供没有括号的引用。\nptextcite
biblatex-chicago
\cite
\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[authordate, backend=biber]{biblatex-chicago}
\addbibresource{biblatex-examples.bib}
\begin{document}
(see \cite{sigfridsson} for an introduction)
\printbibliography
\end{document}
如果你已经\nptextcite
在论文中大量使用,并且不想切换命令以防万一你返回biblatex-apa
,你可以添加
\newcommand*{\nptextcite}{\cite}
\newcommand*{\nptextcites}{\cites}
你的序言。