我正在使用 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
命令被认为引用古典音乐,并且有第四个参数表示曲目编号。但您可以将该参数更改为您想要的任何内容(例如专辑、标签)。