我使用biblatex-mla
MLA 格式引用,我需要引用讲师在在线讲座中所说的内容。该讲座是通过 Zoom 进行的,没有 URL。我已阅读文档,但没有提到如何引用这样的来源。
我应该如何引用在线讲座?
答案1
我想说的是,使用并添加字段,这样看起来就没问题了,但目前条目中@misc
存在一个小问题(@misc
mla-new
https://github.com/jmclawson/biblatex-mla/issues/23),因此我建议你服用@online
。
以下似乎给出了可接受的结果
\documentclass[american]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[style=mla-new, backend=biber]{biblatex}
\begin{filecontents}{\jobname.bib}
@online{elk,
author = {Anne Elk},
title = {Lecture on a Theory on Brontosauruses},
date = {1972-11-16},
publisher = {University of Python},
location = {Monty},
note = {Online lecture},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}
\begin{document}
Lorem \autocite{sigfridsson}
ipsum \autocite{elk}
\printbibliography
\end{document}
如果可以通过某种途径获得讲座录音,您可能也希望在该note
字段中包含相关信息。