引用 Powerpoint 讲座

引用 Powerpoint 讲座

我需要在参考资料部分引用在线讲座的 PowerPoint 幻灯片。我今天刚开始使用 Latex,并且我使用biblatexAPA 格式引用。到目前为止,我已经:

@online{slides_on_ABC,
author={Joe and John},
title = {Title of the slides},
url = {https://mail.yahoo.com/},
urldate = {2020-07-24}
}

我想包含“[Powerpoint Slides]”,因为这是 APA 第 7 版引用的一部分。

答案1

biblatex-apa附带一个综合的示例.bib文件,其中包含 APA 手册中几乎所有条目的条目。

对于幻灯片,我们在以下两个条目中找到biblatex-apa-test-references.bib,第 2282-2301 行

\documentclass[american]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[backend=biber, style=apa]{biblatex}

\begin{filecontents}{\jobname.bib}
@IMAGE{10.14:102b,
  ENTRYSUBTYPE   = {powerpoint},
  AUTHOR         = {Brian Housand},
  TITLE          = {Game on! {Integrating} Games and Simulations in the Classroom},
  PUBLISHER      = {SlideShare},
  DATE           = {2016},
  URL            = {https://www.slideshare.net/brianhousand/game-on-iagc-2016/}
}
@IMAGE{10.14:102c,
  ENTRYSUBTYPE   = {powerpoint},
  AUTHOR         = {R. Mack and G. Spake},
  TITLE          = {Citing Open Source Images and Formatting References for
                    Presentations},
  PUBLISHER      = {Canvas@FNU},
  DATE           = {2018},
  URL            = {https://fnu.onelogin.com/login}
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}

\begin{document}
Lorem \autocite{sigfridsson,10.14:102b,10.14:102c}

\printbibliography
\end{document}

Housand, B. (2016)。游戏开始!在课堂中整合游戏和模拟 [Powerpoint 幻灯片]。SlideShare。https://www.slideshare.net/brianhousand/game-on-iagc-2016/ Mack, R., & Spake, G. (2018)。引用开源图像和格式化演示文稿的参考资料 [Powerpoint 幻灯片]。Canvas@FNU。https://fnu.onelogin.com/login

相关内容