我正在使用Markdown撰写论文。我使用Mendeley创建我的.bib文件。一切正常,但是URL-Dates并未包含在参考书目中。
我的书目文件中条目的示例:
@misc{BAGKampagne,
abstract = {Die Sensibilisierungskampagne Antibiotika von BAG, BLV, BLW und BAFU ist gestartet. Die Kampagne informiert die Schweizer Bev{\"{o}}lkerung {\"{u}}ber den sorgf{\"{a}}ltigen Umgang mit Antibiotika.},
author = {{Bundesamt f{\"{u}}r Gesundheit}},
title = {{«Antibiotika: Nutze sie richtig, es ist wichtig»}},
url = {https://www.bag.admin.ch/bag/de/home/das-bag/aktuell/news/news-09-11-2018.html},
urldate = {2019-01-09}
}
我的Yaml:
---
output:
bookdown::pdf_document2:
toc: no
fig_caption: yes
includes:
in_header: header.tex
lang: de
geometry: "left=3cm, right=2.5cm, top=2.5cm, bottom=2.5cm"
fontsize: 12pt
bibliography: library.bib
csl: science-modified1.csl
link-citations: yes
linkcolor: black
urlcolor: black
header-includes:
- \usepackage{placeins} #definiert den Befehl \FloatBarrier
- \usepackage{fancyhdr}
- \usepackage[doublespacing]{setspace} #Options: singlespacing, onehalfspacing, doublespacing
- \usepackage{chngcntr}
- \counterwithout{figure}{section}
- \counterwithout{table}{section}
- \usepackage{microtype}
- \usepackage{amsmath}
- \usepackage{float}
- \floatplacement{figure}{h}
- \usepackage{wrapfig}
---
我该如何解决?