使用 apa6、apacite 和 bibtex 引用歌曲

使用 apa6、apacite 和 bibtex 引用歌曲

我正在使用 apaciteapacite软件包文档表明我需要该apacdoc软件包来引用歌曲,所以我也将其包括在内。我不清楚的是应该为专辑和录制日期添加哪些 bibtex 字段。

dessa.bib:

@misc{mineshaft,
  author="Dessa",
  title="Mineshaft"
  year="2010",
}

dessa.tex:

\documentclass[man,12pt,apacite]{apa6}
\usepackage{apacite}
\usepackage{apacdoc}
\usepackage{url}

\title{The Title}
\shorttitle{Title}
\author{Insyte}
\affiliation{My School}
\note{\today}

\begin{document}
\maketitle

Dessa is a Minneapolis native ``underrated writer, overrated rapper''
\citesong{mineshaft} who performs with the alt-hip-hop collective, Doomtree.

\bibliography{dessa}
\end{document}

我得到的输出是这样的:

德萨 (Dessa) 是明尼阿波利斯本地人,是一位“被低估的作家、被高估的说唱歌手”德萨,她与另类嘻哈乐队 Doomtree 一起演出。

请注意,引文仅包含字符串“Dessa”,没有括号或引文的其余部分。知道我做错了什么吗?

答案1

对于引用歌曲,apacdoc提供命令:

\bibsong{author}{year}{song title}{track info}

key并且您应该通过以下方式通过字段引用它:

key = {{\protect\bibsong{author}{year}{song title}{track info}}}

因此,你的dessa.bib可以改为:

@incollection{mineshaft,
  key = {{\protect\bibsong{Dessa}{2010}{Mineshaft}{track~1}}}
}

只有一个问题:\bibsong命令被认为引用古典音乐,并且有第四个参数表示曲目编号。但您可以将该参数更改为您想要的任何内容(例如专辑、标签)。

相关内容