biblatex 中的 urlseen 文本

biblatex 中的 urlseen 文本

我想从参考书目中删除(urlseen)文本。

在此处输入图片描述

并且冯诺依曼项目的日期未显示在参考书目中。

我的围兜文件:

@article{johnvonneumann1945,
author = {{Von Neumann}, John},
title = {{First Draft of a Report on the EDVAC}},
url = {http://www.virtualtravelog.net/wp/wp-content/media/2003-08-TheFirstDraft.pdf},
date = {1945-10-08},
urldate = {2017-10-08},
Addendum   = {[Erişim Tarihi : 08-10-2017]},
}

@article{guye.blellochvebrucem.maggs2017,
author = {Blelloch, Guy E and Maggs, Bruce M},
title = {{Parallel Algorithms}},
url = {http://www.cs.cmu.edu/{~}guyb/papers/BM04.pdf},
urldate = {2017-10-08},
Addendum   = {[Erişim Tarihi : 08-10-2017]},
}

Biblatex 代码:

\usepackage[citestyle=authoryear,bibstyle=authoryear, maxcitenames=2, maxbibnames=99]{biblatex}

\renewcommand*{\finalnamedelim}{\addspace ve\space}%and yerine ve koyması için
\renewcommand*{\nameyeardelim}{\addcomma\space} %isimle yıl arası virgül için

\DefineBibliographyStrings{english}{andothers={\space vd. \space}}      %et al yerine vd koyması için
\renewbibmacro{in:}{}
\renewcommand*{\finalnamedelim}{\addspace ve\space}                 %and yerine ve koyması için
\DefineBibliographyStrings{english}{andothers={\space vd. \space}}      %et al yerine vd koyması için

答案1

该字段的默认格式 urldate

\DeclareFieldFormat{urldate}{\mkbibparens{\bibstring{urlseen}\space#1}}

只需在序言中将其替换为

\DeclareFieldFormat{urldate}{#1}

相关内容