我正在尝试创建一个网站书目,但urldate
没有显示,只显示网站最后更新的年份。
\documentclass{article}
\usepackage[sorting=nyt,style=authoryear, backend=bibtex8]{biblatex}
\addbibresource{Literatur}
\DeclareCiteCommand{\parencite}
{\ifentrytype{online}{\bibopenparen}{\bibopenbracket}
\usebibmacro{prenote}}
{\usebibmacro{citeindex}
\usebibmacro{cite}}
{\multicitedelim}
{\usebibmacro{postnote}
\ifentrytype{online}{\bibcloseparen}{\bibclosebracket}}
\begin{filecontents}{\Literature.bib}
@online{Wikipedia.27.02.2017,
author = {Wikipedia, the free encyclopedia},
year = {2017},
title = {MALDI-TOF},
url = {https://de.wikipedia.org/wiki/MALDI-TOF},
urldate = {02.06.2017}
}
\begin{document}
\parencite{Wikipedia.27.02.2017}
\newpage
\fancyhead[R]{\nouppercase{Internet Sources}}
\printbibliography[heading=bibintoc,title={ Internet Sources },type=online]
\end{document}
答案1
您需要biblatex
以某种方式指定日期字段中的日期。摘自手册:
日期字段(例如默认数据模型日期
date
、、和origdate
) 遵守eventdate
urldate
EDTF(扩展日期/时间格式) 规范级别 0 和 1。
大多数情况下这意味着yyyy-mm-dd
,因此就你的情况而言:
urldate={2017-06-02}