如何引用僅以 YouTube 影片形式提供的演講

如何引用僅以 YouTube 影片形式提供的演講

我創建了一個關於 Project Soli 的段落,該段落是在今年的 Google I/O 大會上推出的。然而,只有兩個影片可用。這是其中之一: https://www.youtube.com/watch?v=mpbWQbkl8_g

您如何引用這篇演講並將其放入參考書目中?

答案1

使用 package 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
}

相關內容