为了符合我所在大学的格式要求,我只需要将参考书目中的书名样式从斜体改为直体。有没有简单的方法可以做到这一点?
梅威瑟:
\documentclass{article}
\usepackage[natbibapa]{apacite}
\begin{document}
\bibliography{references}
\bibliographystyle{apalike}
\nocite{*}
\end{document}
参考文献.bib
@book{sorensen2010introducing,
Author = {S{\o}rensen, Peter Birch and Whitta-Jacobsen, Hans J{\o}rgen},
Date-Modified = {2015-03-13 19:15:01 +0000},
Keywords = {master thesis},
Publisher = {McGraw-Hill higher education},
Title = {Introducing advanced macroeconomics: growth and business cycles},
Year = {2010}
}
它是什么样子的:
它看起来应该是这样的:
Sørensen, PB 和 Whitta-Jacobsen, HJ (2010)。高级宏观经济学简介:增长和商业周期。麦格劳-希尔高等教育。
答案1
如果需要使用 的所有功能apacite
,请更改\bibliographystyle{apalike}
为\bibliographystyle{apacite}
。其中一个重要功能是自定义。具体来说, 中的书名格式apacite
由定义为的命令决定\APACrefbtitle
:
\newcommand{\APACrefbtitle}[2]{\Bem{#2}}
这里\Bem
通常是\emph
。
现在让我们重新定义书名格式化命令:
\documentclass{article}
\usepackage[natbibapa]{apacite}
\renewcommand{\APACrefbtitle}[2]{#2}
\begin{document}
\bibliography{references}
\bibliographystyle{apacite}
\nocite{*}
\end{document}