我想使用 IEEE 风格引用讲座幻灯片,如下所述:https://libraryguides.vu.edu.au/ieeereferencing/lecturenotes
讲座笔记如下:http://cs231n.stanford.edu/slides/2017/cs231n_2017_lecture11.pdf
如何将其包含在 LaTeX 中?
答案1
您没有提供足够的细节来回答。
IEEEtran.bst 提供互联网参考文献的电子条目类型。IEEEtran.bst 还提供了别名“online”、“internet”、“webpage”和“www”,以便与某些现有的 BiBTeX 数据库和样式文件兼容。不过,所有
biblatex
新作品都应使用“electronic”(或者对于也使用 Philipp Lehman 的人来说可能是“online”)。IEEE 对电子参考文献的格式不同,不使用斜体或引号,并且用句号而不是逗号分隔字段。此外,日期括在括号内,并放在靠近标题的位置。这可能是为了强调电子参考文献在快速变化的互联网上可能不再有效。还请注意,可以自由使用 howpublished 字段来描述条目的形式或类别。也可以使用 organization 和 address 字段。
假设您正在使用IEEEtran
文档类,这里有一个示例:
\begin{filecontents}{ref.bib}
@online{li2017,
author = {Fei-Fei Li and Justin Johnson and Serena Yeung},
title = {{Lecture 11: Detection and Segmentation}},
url = {http://cs231n.stanford.edu/slides/2017/cs231n_2017_lecture11.pdf},
howpublished={PDF document},
year = {2017}
}
@article{duck2023,
author = {Paulinho van Duck and Paulette de la Quack},
title = {{Ducks are smart}},
journal={{Quack University Journal}},
volume={1},
number={3},
year = {2023}
}
\end{filecontents}
\documentclass[american]{IEEEtran}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{xurl}
\begin{document}
Lecture note: \cite{li2017}.
Ordinary article: \cite{duck2023}.
\bibliographystyle{IEEEtran}
\bibliography{ref}
\end{document}