如何在 bib 文件中引用一首歌曲?

如何在 bib 文件中引用一首歌曲?

例如,如何定位第 6 首Something You Can't Return To曲目Synecdoche, New York (Original Motion Picture Soundtrack)

@misc{brion-2008,
  author  = {Jon Brion},
  title   = {Synecdoche, New York (Original Motion Picture Soundtrack)},
  year    = {2008},
  publisher = {Lakeshore Records}
}

答案1

标准数据模型定义了类型@audio@music,这在这里是合适的。但是标准样式没有为这些类型设置任何特定内容,只会显示与 相同的输出@misc。但是,一些贡献的biblatex样式确实设置了处理@audio和 的代码@music。幸运的是biblatex-chicago, 是其中一种样式。

示例文件中的示例和解释dates-test.bib建议类似下面的操作应该可以起作用。

\documentclass[american]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[authordate, backend=biber]{biblatex-chicago}

\begin{filecontents}{\jobname.bib}
@music{synecdoche:omps:something,
  author     = {Jon Brion},
  title      = {Something You Can't Return To},
  date       = 2008,
  bookauthor = {Jon Brion},
  booktitle  = {Synecdoche, New York (Original Motion Picture Soundtrack)},
  chapter    = {6},
  publisher  = {Lakeshore Records},
}
\end{filecontents}
\addbibresource{\jobname.bib}


\begin{document}
\cite{synecdoche:omps:something}
\printbibliography
\end{document}

Brion, Jon。2008 年。“Something You Can't Return To”。《Synecdoche, New York》(原声带)第 6 首曲目。Lakeshore Records。

相关内容