我正在尝试为以下内容创建 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
文档了解更多信息。