如何更改 bibtex chem-acs 样式的日期格式?

如何更改 bibtex chem-acs 样式的日期格式?

我使用的biblatex是 样式chem-acs,但在引用时@online urldate,它会将日期打印为“(accessed 02/08/2019)”,而我的教授特别希望此类引用的日期采用“(accessed Feb 08, 2019)”的形式。我该怎么做?

答案1

控制 URL 访问日期格式的选项称为urldate。您可能需要urldate=comp

\documentclass[american]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[style=chem-acs, backend=biber, urldate=comp]{biblatex}


\addbibresource{biblatex-examples.bib}


\begin{document}
\cite{sigfridsson,markey}
\printbibliography
\end{document}

Markey, N. Tame the BeaST,BibTeX 1.3 版的 B 到 X,http://mirror.ctan.org/info/bibtex/tamethebeast/ttb_en.pdf(2006 年 10 月 1 日访问)。

相关内容