我正在使用 Daniel A. Weiss 代码将我的乳胶文档格式化为 APA7 样式(https://ctan.org/pkg/apa7)。
但是,我无法找到如何正确格式化“参考”部分以像这样引用视频:
Cook,P. [@chemteacherphil]。(2019 年 11 月 19 日)。碱盐被点燃。#chemistry #chemteacherphil #scienceexperiments #foryou #jobforme #trend #featurethis #science #vibecheck[视频]。 抖音。https://vm.tiktok.com/xP1r1m
有谁能够帮助我?
答案1
当你需要.bib
APA 格式的条目biblatex-apa
而不知道如何处理时,请查看https://github.com/plk/biblatex-apa/blob/master/bibtex/bib/biblatex-apa-test-references.bib. 该文件包含.bib
APA 手册中所有参考示例的条目,按章节、部分和示例编号分类。
该文件包含 Instagram 帖子和 Youtube 视频的示例。在它们之间进行插值可以得到如下结果
\documentclass[american]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[backend=biber, style=apa]{biblatex}
\begin{filecontents}{\jobname.bib}
@video{alkali,
entrysubtype = {video},
author = {Phillip Cook},
author+an:username = {1="@chemteacherphil"},
title = {Alkali salts get lit.
\#chemistry \#chemteacherphil \#scienceexperiments
\#foryou \#jobforme \#trend \#featurethis \#science
\#vibecheck},
publisher = {TikTok},
url = {https://vm.tiktok.com/xP1r1m},
date = {2019-11-19},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
Lorem \autocite{alkali}
\printbibliography
\end{document}