如何引用网页地址作为参考?

如何引用网页地址作为参考?

我想以 IEEE 格式引用网页。但我不知道如何在 JabRef 中编辑 bib 代码。

答案1

我默认至少有六种 IEEE 样式,但无论如何你都可以使用引用类型 @electronic或可能是 @misc。可能你的磁盘中有 IEEEexample.bib这样的文件:

@electronic{IEEEexample:IEEEwebsite,
  title         = "The {IEEE} Website",
  url           = "http://www.ieee.org/",
  year          = "2008",
  key           = "IEEE"
}

如果此文件存在,您可以编译类似以下 MWE 的文件来测试这些条目在 LaTeX 中的格式:

\documentclass[english]{article}
\begin{document}
\cite{IEEEexample:electronhowinfo,
      IEEEexample:electronhowinfo2,
      IEEEexample:electronorgadd,
      IEEEexample:hyperrefsty
      }
\bibliographystyle{IEEEtran}
\bibliography{IEEEexample}
\end{document}

当然,您必须IEEEtran 根据所使用的确切 IEEE 样式进行更改。

平均能量损失

相关内容