
Creé un párrafo sobre el Proyecto Soli que se presentó en la conferencia Google I/O de este año. Sin embargo, sólo hay dos vídeos disponibles. Este es uno de ellos: https://www.youtube.com/watch?v=mpbWQbkl8_g
¿Cómo citaría este discurso y lo incluiría en la bibliografía?
Respuesta1
Con el paquete biblatex
, puede citar entradas en línea ( @online
) sin preocuparse por nada. Todos los campos de entrada url
también admiten un campo.
Recuerda, incluso puedes hacer referencia a un momento muy específico agregando la hora al enlace de 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}
* enlaces ocultos para la captura de pantalla
Respuesta2
@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
}