如何向 bibtex 项目添加“无日期”?

如何向 bibtex 项目添加“无日期”?

我正在尝试将“无日期”添加到 @misc bibtex 项目中,但由于某种原因,我没有得到我想要的结果。我正在参考一个网页。

这是我的围兜物品:

@misc{endomondo,
author = {{Endomondo}},
year =      {no date},
howpublished = {\url{https://www.endomondo.com/features}},
note = {Accessed: 18 November 2016}
}

文中用法:

\citet[]{endomondo} – a sport tracking mobile

结果是:

enter image description here

参考书目结果: enter image description here

为什么“无日期”没有出现在参考书目中?有人知道吗?提前谢谢!

我在用

\usepackage[round]{natbib} % Use BibTeX for bibliography management

答案1

(评论太长,因此作为答案发布。我最终会删除这个答案。)

howpublished我无法使用您提供的信息复制您发布的屏幕截图。具体来说,在格式化的 bib 条目中,字符串“无日期”在和字段的内容之间显示正常note

enter image description here

\RequirePackage{filecontents}
\begin{filecontents}{mybib.bib}
@misc{endomondo,
author = {Endomondo},
year   = {no date},
howpublished = {\url{https://www.endomondo.com/features}},
note   = {Accessed: 18 November 2016}
}
\end{filecontents}

\documentclass{article}
\usepackage{url}
\usepackage[round]{natbib}
\bibliographystyle{plainnat}

\begin{document}
\citet{endomondo}
\bibliography{mybib}
\end{document}

相关内容