如何获得正确的 APA 引用格式

如何获得正确的 APA 引用格式

我正在尝试在我的报告中使用 APA 格式的参考文献。

\documentclass[a4paper,12pt,openany]{report}
\usepackage{apacite}
\begin{document}
\bibliographystyle{apacite}

\chapter{Intro}

A traditional professional asset management firms 
are organized in two basic ways \cite{book:SAPM}
.....blah..blah....

\bibliographystyle{apacite}
\bibliography{ref}
\end{document}

我的 bib 文件看起来像

@book{ book:SAPM,
           author = "{Frank  Reily, Keith Brown}",
           title = "Analysis of Investments and Management of Portfolios",
           publisher = "CENGAGE Learning",
           year = "2012"
 }

我的输出是...

参考

Frank Reily、Keith Brown。(2012 年)。投资分析和投资组合管理。CENGAGE Learning。

段落中的引用句也是这样显示的......

传统专业资产管理公司有两种基本组织方式[]

期望的输出应该是......

参考书目

Reily F.、Brown K.(2012)。“投资分析与投资组合管理”,CENGAGE Leraning。

在段落中的引用句子中,应该是这样的......

传统专业资产管理公司有两种基本组织方式(Riely,Brown,2012)。

我是初学者。所以,请详细解释一下。另外,我认为我的 aux 和 bbl 文件存在一些问题。有时我必须删除这些文件才能运行 pdflatex。

答案1

(评论太长,因此作为答案发布。)

恐怕我无法重现您报告的错误。在下面的 MWE(最小工作示例)上再运行 LaTeX、BibTeX 和 LaTeX 两次后,我已在其中指定

author = "Frank K. Reilly and Keith C. Brown",

而不是你的

author = "{Frank  Reily, Keith Brown}",

我得到以下输出:

在此处输入图片描述

\documentclass[a4paper,12pt]{article}

\usepackage{filecontents}
\begin{filecontents*}{ref.bib}
@book{ book:SAPM,
  author = "Frank K. Reilly and Keith C. Brown",
  title  = "Analysis of Investments and Management of Portfolios",
  publisher = "CENGAGE Learning",
  year = "2012",
 }
\end{filecontents*}

\usepackage{apacite}
\bibliographystyle{apacite}

\begin{document}
A traditional professional asset management firms 
are organized in two basic ways \cite{book:SAPM}.
\bibliography{ref}
\end{document}

请注意,参考文献和引文标注的外观由参考书目样式的选择决定(此处:)apacite。如果这不是您想要的外观(双关语...),您可能应该使用不同的参考书目样式。

相关内容