如何引用仅以 YouTube 视频形式提供的演讲

如何引用仅以 YouTube 视频形式提供的演讲

我写了一段关于 Project Soli 的文字,该文字在今年的 Google I/O 大会上推出。但是只有两个视频可用。这是其中之一: https://www.youtube.com/watch?v=mpbWQbkl8_g

您将如何引用该演讲并将其列入参考书目?

答案1

使用包biblatex,您可以引用在线条目(@online),而无需关心任何事情。所有条目字段url也支持字段。

请记住,您甚至可以通过将时间附加到 YouTube 链接来指代非常具体的时刻。

\begin{filecontents}{\jobname.bib}
    @online{youtube,
        title = {Some cool motion sensor stuff},
        date = {2015},
        organization = {Youtube},
        author = {Peter Zatko and  Ivan Poupyrev and  Rachid El
        Guerrab and  Regina Dugan},
        url = {https://www.youtube.com/watch?v=mpbWQbkl8_g#t=20m15s},
    }
\end{filecontents}
\documentclass{article}
\usepackage[maxnames=10]{biblatex}
\addbibresource{\jobname.bib}
\usepackage{hyperref}
\begin{document}
\cite{youtube}
\printbibliography
\end{document}

对冲BiblatexYoutube

* 屏幕截图中隐藏的链接

答案2

@Misc{Zatko15,
  author =   {Peiter Zatko and Ivan Poupyrev and
                  El Guerrab, Rachid and Regina Dugan},
  title =    {{G}oogle {I/O} 2015. {A} little badass. 
                  {B}eautiful. {T}ech and human. {W}ork and love. {ATAP}},
  howpublished = {\url{https://www.youtube.com/watch?v=mpbWQbkl8_g}},
  month =    {May},
  day =          29,
  year =     2015
}

相关内容