我的 list.bib 文件中有一个参考:
@misc{DonoraSmog,
author = {Wikipedia},
title = {1948 Donora Smog},
month = jun,
year = {2009},
url = {http://www.test.org/doe/}
}
但是,一旦编译,它就不会在 pdf 中显示该网站。我正在使用包 {url}。
另外,是否有一个可以进行 APA 引用的软件包?
答案1
(太长,无法评论)
使用以下代码,可以显示该网站。
\documentclass{IEEEtran}
\usepackage{filecontents}
\begin{filecontents*}{sampbib.bib}
@misc{DonoraSmog,
author = {Wikipedia},
title = {1948 Donora Smog},
month = jun,
year = {2009},
url = {http://www.test.org/doe/}
}
\end{filecontents*}
\usepackage{url}
\bibliographystyle{IEEEtran}
\begin{document}
\nocite{*}
\bibliography{sampbib}
\end{document}
如果此代码对您不起作用,您可能必须提供您的代码进行测试。
答案2
代替
url = {http ...
使用
howpublished = {http ...
或
howpublished = {http ...
我遇到了同样的问题,通过搜索我找到了这个页面。我查看了更多文档,找到了这个解决方案,至少对我来说有效。