例如,如何定位第 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}