apalike Bibliographystyle 错误,带有网站链接参考

apalike Bibliographystyle 错误,带有网站链接参考

我想使用 bibliographystyle 引用网站链接作为参考apalike
我必须按照会议的要求使用 apalike。

以下是代码:

\documentclass[times,10pt,twocolumn]{article}
\usepackage{PRADSConference}
\usepackage{times}
\usepackage{graphicx}
\usepackage{amssymb}
\usepackage[draft]{hyperref}
\usepackage{url}
\usepackage{authblk}
\pagestyle{empty}
\usepackage[round]{natbib}
\bibliographystyle{apalike}
\usepackage{amsmath} 
\usepackage{cleveref} 

\citep{lithium}
\bibliography{refs}
\end{document}

但是,输出没有像其余参考文献那样编号,如下所示

在此处输入图片描述

我在 bib 文件中写了如下的参考文献

@Misc{lithium,
Title                    = {Lithium-ion Specifications},
HowPublished             = {\url{http://optimum-china.en.alibaba.com/product/437274726-212297973/rechargeable_HEV_EV_bus_battery_pack_of_lifepo4_600v_500ah.html}},
Note                     = {Accessed on: 10/02/2016}}

我也收到此错误:

package natbib error bibliography not compatible with author-year citations

当我从 .tex 文件中删除网站链接引用时,没有错误,并且所有引用都以作者年份样式显示,如图所示

在此处输入图片描述

答案1

参考书目样式apalike旨在创建作者年份样式的引文标注。但是,lithium条目缺少author字段和year字段。poor 的natbib核心(引文管理软件包)应该做什么?

我建议您为条目创建合适的字段author,删除所有辅助文件,然后完全重新编译您的文档(LaTeX、BibTeX 和 LaTeX 再编译两次)。yearlithium

相关内容