创建 bibtex

创建 bibtex

我正在尝试为以下内容创建 bibtex 条目:

Alan Oppenheim。RES.6-008 数字信号处理。2011 年春季。麻省理工学院:MIT OpenCourseWare, https://ocw.mit.edu. 许可:Creative Commons BY-NC-SA。

我该怎么做?我应该使用哪个元素?

答案1

欢迎来到 TeX.SE!我建议使用@online文档类型biblatex来引用此在线课程材料。最小示例:

\documentclass{article}
\usepackage[style=authoryear-comp]{biblatex}
\addbibresource{\jobname.bib}
\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}
@online{key,
  author = {Alan Oppenheim},
  year = {2011},
  month = {Spring},
  title = {Digital Signal Processing},
  subtitle = {RES.6-008},
  url = {https://ocw.mit.edu},
  organization = {Massachusetts Institute of Technology: MIT OpenCourseWare},
  addendum = {License: Creative Commons BY-NC-SA}
}
\end{filecontents}

\begin{document}

Advances in integrated circuit technology have had a major impact on the technical areas to which digital signal processing techniques and hardware are being applied. (\cite{key})

\printbibliography

\end{document}

在此处输入图片描述

您可能想要更改结果的外观细节。例如,请参阅biblatex文档了解更多信息。

相关内容