BibTeX 和网页的“访问”字段

BibTeX 和网页的“访问”字段

提到问题如何引用网页如果您使用 Citavi 并想要添加“访问日期”,最好的方法是什么?

我让 Citavi 将访问日期添加到笔记中,但我无法添加“accessed:”预字符串。

我怎样才能满足我的需求并 a) 在作者之后直接添加访问日期(在括号中)
德意志交易所股份公司 (2002 年 1 月 7 日):德意志交易所 - 各种指数,http://www.exchange.de/fwb.indices.html

或者如果这太难了
b) 通过 citavi 或 latex 添加访问的字符串?
德意志交易所集团。 2002. 德意志交易所 - 各种印度指数,http://www.exchange.de/fwb.indices.html. 访问日期:2002 年 1 月 7 日

我用这个 LaTeX 模板它使用这个 *.bst 文件用于转换 bibtex。

也许只需向 *.bst 文件添加一些内容就是最简单的选择?


编辑:根据@Micos 的建议,我添加了相应的 *.bib 条目:

@misc{OMG.2014,
 author = {OMG},
 year = {2014},
 title = {{About the Object Management Group}},
 url = {http://www.omg.org/gettingstarted/gettingstartedindex.htm},
 keywords = {technology standards consortium;technology standards;MDA;UML;CORBA;Unicode;ISO PAS;ITU-T;Heathcare;Legal;Life Sciences Research;Government;Finance;C4I;Robotics;technical meetings;tutorials;specifications;computer technology},
 note = {05.10.2014}
}

答案1

看起来书目样式文件ormsv080.bst是使用马克布斯特实用程序。因此,遗憾的是,它没有被编程来识别 —— 因此将忽略 ——field命名的,比如last-accessed-dateaccess-date

如果你想坚持这种特定的书目风格,你需要更改字段

note = {05.10.2014}

note = {Accessed on 05.10.2014}

bst恐怕编辑文件本身以在字段内容前加上“访问日期”不是一个好主意note,因为该note字段可以包含任何类型的信息,而不仅仅是上次访问给定条目的日期。好消息是,您只需进行一次编辑(当然,假设您不会重复访问此网站)。

在此处输入图片描述

\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@misc{OMG.2014,
 author = {OMG},
 year = {2014},
 title = {{About the Object Management Group}},
 url = {http://www.omg.org/gettingstarted/gettingstartedindex.htm},
 keywords = {technology standards consortium;technology standards;MDA;UML;CORBA;Unicode;ISO PAS;ITU-T;Heathcare;Legal;Life Sciences Research;Government;Finance;C4I;Robotics;technical meetings;tutorials;specifications;computer technology},
 note = {Accessed on 05.10.2014}
}
\end{filecontents*}
\bibliographystyle{ormsv080}
\usepackage{natbib,url}
\begin{document}
As argued by \cite{OMG.2014}, \dots
\bibliography{\jobname}
\end{document}

答案2

你可以跳过filecontents使用以下格式

@misc{ABC,
 title = {{ABCD} My name is John Doe},
  howpublished = {\url{https://www.google.com}}, 
  year   = "2019 (accessed July 1, 2019)"
  }

相关内容