
今年の Google I/O カンファレンスで紹介された Project Soli について、文章を作成しました。ただし、利用できるビデオは 2 つしかありません。これはそのうちの 1 つです。 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
}