使用 apacite 进行多次引用并附上单独的页码

使用 apacite 进行多次引用并附上单独的页码

问题:

尝试使用包引用两位作者,每人都有单独的页码磷灰石

(1)我尝试了以下方法:

\cite[~p. 15-22]{atkin14} \cite[~p. 282]{rub14}

(1)输出:

(Atkinson & Fitzgerald, 2014, p. 15-22)(Rubin, 2014, p. 282)

(2)我也尝试过:

\cite[~p. 15-22, ~p. 282]{atkin14, rub14}

(2)输出:

(Atkinson & Fitzgerald, 2014; Rubin, 2014, p. 15-22, p. 282)

期望的结果:

(Atkinson & Fitzgerald, 2014, p. 15-22; Rubin, 2014, p. 282)

以下是最小工作示例:

\documentclass{article}

\usepackage{apacite}
\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}
@article{rub14,
   author = {Rubin, Jared},
   title = {Printing and protestants: an empirical test of the role of printing in the Reformation},
   journal = {Review of Economics and Statistics},
   volume = {96},
   number = {2},
   pages = {270-286},
   year = {2014},
   type = {}
}

@book{atkin14,
   author = {Atkinson, Benedict  and Fitzgerald, Brian},
   title = {A short history of copyright: the genie of information},
   publisher = {Springer},
   address = {Cham},
   pages = {15-22},
   year = {2014},
   type = {}
}
\end{filecontents}

\begin{document}

\noindent One among many examples is the breakup of Europe's religious unity during the Protestant Reformation \cite[~p. 15--22, ~p. 282]{atkin14, rub14}.

\bibliographystyle{apacite}
\bibliography{\jobname}

\end{document}

答案1

由于与页面相关的引用特定于每个条目,因此您不能使用单个\cite命令 - 除非您想冒险让读者感到困惑......

使用说明

(\citeNP[pp.~15--22]{atkin14}; \citeNP[p.~282]{rub14})

创建两个单独的引文标注,用分号分隔,并放在一对圆括号中。 inNP代表\citeNP“无括号”。

顺便说一句,你应该小心不要让 BibTex 将单词Protestants和转换为小写Reformation。只需将单词括在花括号中,以告知 BibTeX 不能将它们转换为protestantsreformation

在此处输入图片描述

\documentclass{article}

\usepackage{apacite}
\bibliographystyle{apacite}

\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{rub14,
   author = {Rubin, Jared},
   title = {Printing and {Protestants}: An empirical test of the role of printing in the {Reformation}},
   journal = {Review of Economics and Statistics},
   volume = {96},
   number = {2},
   pages = {270--286},
   year = {2014},
}

@book{atkin14,
   author = {Atkinson, Benedict and Fitzgerald, Brian},
   title = {A Short History of Copyright: The Genie of Information},
   publisher = {Springer},
   address = {Cham},
   year = {2014},
}
\end{filecontents}

\begin{document}
\noindent
(\citeNP[pp.~15--22]{atkin14}; \citeNP[p.~282]{rub14})

\bibliography{\jobname}
\end{document}

相关内容