如何引用 YouTube 评论

如何引用 YouTube 评论

我在网上搜索如何引用 YouTube 评论,然后我发现这篇 WikiHow 文章如何在 APA 中引用 YouTube 评论。但是,我不知道如何使用 BibTeX 执行此操作。我真的不知道要填写哪些字段。包含它所来自的视频是否重要?我找不到链接到评论本身的方法,所以我不知道要包含什么链接(原始视频的链接?)

答案1

解决此问题的一个方法是使用@misc条目类型如下:

@misc{youtubeComment2018,
    author = {Name of comment Author},
    title = {Title of Youtube video},
    journal = {Youtube},
    type = {Youtube Comment},
    year = {2018},
    howpublished = {\url{url to youtube video}},
    note = {In comment section, accessed on 2018/12/04}
}

这是 MWE:

\documentclass{article}
\usepackage{filecontents}
\usepackage{cite}
\usepackage{url}
\begin{filecontents}{\jobname.bib}
    @misc{youtubeComment2018,
    author = {CheckMyPlaylist},
    title = {5 Scientists with Ideas That Nobody Believed ... Who Were Right},
    journal = {Youtube---SciShow},
    type = {Youtube Comment},
    year = {2018},
    howpublished = {\url{https://www.youtube.com/watch?v=m_zFyXWxxMA}},
    note = {In comment section, accessed~2018-12-04}
}
\end{filecontents}
\begin{document}
From the comment on Youtube~\cite{youtubeComment2018}
\bibliography{\jobname}
\bibliographystyle{apalike}
\end{document}

更新,因为我没有使用{}大写字母,所以它们在输出时将以小写形式显示:

apa使用bibtex

请注意,bibtex 实际上不需要任何字段即可工作,因此您可以根据需要使用上述任何一个。

如果你使用BibLATEX,您可以使用条目类型@online

@online{ytcomment2018,
    author = {name of author},
    title = {Video title},
    year  = {2018},
    url   = {add url to video here},
    urldate = {2018-12-04}
}

还有一个 MWE:

\documentclass{article}
\usepackage{filecontents}
\usepackage[style=apa,backend=biber]{biblatex}
\begin{filecontents*}{main.bib}
@online{ytcomment2018,
    author = {CheckMyPlaylist},
    title = {5 {S}cientists with {I}deas {T}hat {N}obody {B}elieved \ldots {W}ho {W}ere {R}ight},
    titleaddon = {{C}omment on video published by the {S}ci{S}how {Y}outube {C}hannel},
    year  = {2018},
    url   = {https://www.youtube.com/watch?v=m_zFyXWxxMA},
    urldate = {2018-12-04}
}
\end{filecontents*}
\addbibresource{main.bib}
\begin{document}
From the comment on Youtube~\cite{ytcomment2018}
\printbibliography
\end{document}

注意使用{}大写字母。

输出结果为:

使用 biblatex 的 apa

使用 BibLATEX,您还可以根据需要使用可选字段,例如subtitletitleaddon或。language

相关内容