在 WinShell 中使用 ACM 引用样式引用 Web 源

在 WinShell 中使用 ACM 引用样式引用 Web 源

我是 Windows 用户。我使用 MikTex 和 Winshell 编辑器编辑我的 latex 脚本。我正在研究 ACM 会议风格。我想引用以下格式的 Web 资源,就像他们的模板一样:

Rafal Ablamowicz 和 Bertfried Fauser。2007 年。CLIFFORD:用于 Clifford 代数计算的 Maple 11 软件包,版本 11。(2007 年)。2008 年 2 月 28 日检索自 http://math.tntech.edu/rafal/cliff11/index.html

web在 WinShell 中,我有一个 .bib 前端视图。我可以选择源类型。列表中没有。所以我使用misc

在此处输入图片描述

问题是:我如何Retrieved February 28, 2008 from在 URL 之前添加此部分:???

这里有一些字段的类型,没有人是针对的:检索自: 在此处输入图片描述

当我尝试retrieved from在 URL 中添加它时,它会修剪空格。

编辑: 我用:ACM-Reference-Format.bst

这是 tex 文件部分:

\bibliographystyle{ACM-Reference-Format}
\bibliography{sample-bibliography} 

这是网页的 .bib 条目,我不知道如何添加:Retrieved February 28, 2008 fromACM 参考样式要求在 URL 之前添加的部分,就像他们的页面中那样:ACM 参考格式

@misc{chrome17,
 author               = {Google},
 title                = {Chrome},
 url                  = {https://www.google.com/chrome/index.html},
 year                 = {2017},
 }

答案1

ACM-Reference-Format.bst您可以将 URL 的访问日期添加到该lastaccessed字段(@misc但仅适用于条目)。

\documentclass[format=acmlarge, review=false, screen=true]{acmart}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{elk,
  author       = {Anne Elk},
  title        = {A Theory on Brontosauruses},
  year         = {2016},
  url          = {http://www.example.edu/~elk/bronto.pdf},
  lastaccessed = {August 7, 2017},
}
\end{filecontents}

\begin{document}
\cite{elk}

\bibliographystyle{ACM-Reference-Format}
\bibliography{\jobname}
\end{document}

平均能量损失

相关内容