![如何引用仅以 YouTube 视频形式提供的演讲](https://linux22.com/image/316389/%E5%A6%82%E4%BD%95%E5%BC%95%E7%94%A8%E4%BB%85%E4%BB%A5%20YouTube%20%E8%A7%86%E9%A2%91%E5%BD%A2%E5%BC%8F%E6%8F%90%E4%BE%9B%E7%9A%84%E6%BC%94%E8%AE%B2.png)
我写了一段关于 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}
* 屏幕截图中隐藏的链接
答案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
}