在 bib 中引用网站

在 bib 中引用网站

我想在我的 bib 文件中引用一个网站。我使用:

\usepackage{natbib}

我发现:

@misc{Xmisc,
 %author    = "",
 %title     = "",
 %howpublished = "",
 %year     = "XXXX",
 %month    = "",
 %note     = "",
}

但这不包括上次访问场地。

有什么建议么?

答案1

相关信息不是包natbib。而是bibliographystyle你使用的导入。

允许bibliographystyle plainnat以下条目:

address    author    booktitle    chapter    doi    eid    edition
editor    howpublished    institution    isbn    issn
journal    key    month    note    number    organization
pages    publisher    school    series    title    type
url    volume    year

因此您可以执行以下操作:

\documentclass[12pt,english,a4paper]{report}
\usepackage{natbib}
\usepackage{filecontents}
\begin{filecontents}{references.bib}
@misc{test,
author={Christian Faulhammer},
title={What is a minimal working example?},
howpublished ={Website},
year={2009},
month=8,
url ={http://www.minimalbeispiel.de/mini-en.html},
note ={last checked: 05.09.2011},
}
\end{filecontents}
\begin{document}
\cite{test}
\bibliographystyle{plainnat}
\bibliography{references}
\end{document}

使用 biblatex:

\documentclass[12pt,english,a4paper]{report}
\usepackage{babel}
\usepackage[style=authoryear]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{references.bib}
@online{test,
author="Christian Faulhammer",
title="What is a minimal working example?",
howpublished ="Website",
date = "2009-08-18",
url ="http://www.minimalbeispiel.de/mini-en.html",
urldate="2011-09-06",
}
\end{filecontents}
%\bibliography{references}
\addbibresource{references.bib}
\begin{document}
\cite{test}
\printbibliography

\end{document}

答案2

继续使用 BibTeX 和natbib(和har2nat,如果你使用“哈佛”风格的引用命令,但希望使用该natbib包),你总是可以使用条目类型的“注释”字段@misc来记录类似

note = "Last visited on dd/mm/yyyy",

我所熟悉的大多数书目样式都被设计为,当条目类型为 时,打印出注释字段的内容@misc

相关内容