我想引用一些电影,我将其用作示例,并将它们也列在我的参考书目中。到目前为止,我已将它们作为 @misc 条目添加到我的参考书目文件中。一切都按预期进行,尽管如此,我对电影的显示效果并不满意。我要么需要调整 @misc 条目类型样式(我不会将其用于其他任何用途),要么只为电影创建新的样式。
目前整个事情看起来是这样的:
\documentclass[draft=true,fontsize=12,captions=nooneline]{scrbook}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\RequirePackage[ngerman=ngerman-x-latest]{hyphsubst}
\addtokomafont{section}{\clearpage}
%Biblatex
\usepackage[style=authortitle-dw,backend=biber,bibencoding=latin1,firstfull=true,ibidemfont=italic,maxbibnames=99,]{biblatex}
\usepackage[babel,german=quotes]{csquotes}
\bibliography{bibliographie.bib}
\DefineBibliographyStrings{ngerman}{andothers={et \addabbrvspace al\adddot}}
\DefineBibliographyStrings{ngerman}{urlseen = {zuletzt aufgerufen am}}
\DeclareFieldFormat{titleaddon}{{\mkbibemph{#1}}}
\DeclareFieldFormat{booktitleaddon}{{\mkbibemph{#1}}}
\renewcommand{\titleaddonpunct}{\addcomma\space}
\begin{document}
... Stuff here ..
\printbibliography[heading=bibintoc]
\end{document}
在我的 .bib 文件中,我有一个如下所示的条目:
@Misc{potter4,
Title = {Harry Potter and the Goblet of Fire},
Author = {Newell, Mike},
Year = {2005},
HowPublished = {BluRay Disc}
}
正如预期的那样,结果如下:
纽厄尔,迈克:《哈利·波特与火焰杯》,蓝光光盘,2005 年。
如果它是一本书,那么这个输出将非常有意义,但因为它是一部电影(严格来说没有作者),我希望它实际上看起来更像这样:
哈利波特与火焰杯,导演:迈克·纽维尔,蓝光光盘,2005 年。
我一直尝试使用 \DeclareDatamodelEntrytypes 和 \DeclareDatamodelFields 创建一个新的条目类型“电影”,但没有成功。
除此之外,我还想在文本中引用电影时给出时间代码,例如: 1:19:25-1:19:30 。当然,只需将这些数字添加到 \footcite 即可,但我想知道是否有办法定义 Pagination 或 Bookpagination,以便它自动在通常输出 pp. 的位置添加 TC(或德语中的 S.,因为我使用的是德语)。