如何在 MLA 中引用在线讲座?

如何在 MLA 中引用在线讲座?

我使用biblatex-mlaMLA 格式引用,我需要引用讲师在在线讲座中所说的内容。该讲座是通过 Zoom 进行的,没有 URL。我已阅读文档,但没有提到如何引用这样的来源。

我应该如何引用在线讲座?

答案1

我想说的是,使用并添加字段,这样看起来就没问题了,但目前条目中@misc存在一个小问题(@miscmla-newhttps://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}

Elk, Anne。“雷龙理论讲座”。U of Python,蒙蒂,1972 年 11 月 16 日,在线讲座。

如果可以通过某种途径获得讲座录音,您可能也希望在该note字段中包含相关信息。

相关内容