
올해 구글 I/O 컨퍼런스에서 소개된 프로젝트 솔리(Project Soli)에 대한 문단을 만들어봤습니다. 하지만 사용할 수 있는 동영상은 2개뿐입니다. 이것은 그 중 하나입니다: 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
}