aboutsummaryrefslogtreecommitdiff
path: root/test/command/biblatex-online.md
blob: f2e87f5ef003c149b8097330b4b1d3dd57e9631d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
```
% pandoc -f biblatex -t markdown -s
@comment{adapted from http://mirrors.ctan.org/macros/latex/contrib/biblatex/doc/examples/biblatex-examples.bib}

@online{markey,
	Annotation = {An online entry for a tutorial. Note the format of the date field (yyyy-mm-dd) in the database file.},
	Author = {Markey, Nicolas},
	Date = {2005-10-16},
	Hyphenation = {american},
	Sorttitle = {Tame the Beast},
	Subtitle = {The {B} to {X} of {BibTeX}},
	Title = {Tame the {BeaST}},
	Url = {http://tug.ctan.org/tex-archive/info/bibtex/tamethebeast/ttb_en.pdf},
	Urldate = {2006-10-01},
	Version = {1.3},
}

@online{CTAN,
	Annotation = {This is an online entry. The \textsc{url}, which is given in the url field, is transformed into a clickable link if hyperref support has been enabled. Note the format of the urldate field (yyyy-mm-dd) in the database file. Also note the label field which may be used as a fallback by citation styles which need an author and\slash or a year},
	Date = 2006,
	Hyphenation = {american},
	Label = {CTAN},
	Subtitle = {The {Comprehensive TeX Archive Network}},
	Title = {{CTAN}},
	Url = {http://www.ctan.org},
	Urldate = {2006-10-01},
}

^D
---
nocite: "[@*]"
references:
- accessed: 2006-10-01
  annote: An online entry for a tutorial. Note the format of the date
    field (yyyy-mm-dd) in the database file.
  author:
  - family: Markey
    given: Nicolas
  id: markey
  issued: 2005-10-16
  language: en-US
  title: "Tame the BeaST: The B to X of BibTeX"
  title-short: Tame the BeaST
  type: webpage
  url: "http://tug.ctan.org/tex-archive/info/bibtex/tamethebeast/ttb_en.pdf"
  version: 1.3
- accessed: 2006-10-01
  annote: This is an online entry. The [url]{.smallcaps}, which is given
    in the url field, is transformed into a clickable link if hyperref
    support has been enabled. Note the format of the urldate field
    (yyyy-mm-dd) in the database file. Also note the label field which
    may be used as a fallback by citation styles which need an author
    and/or a year
  id: CTAN
  issued: 2006
  language: en-US
  title: "CTAN: The Comprehensive TeX Archive Network"
  title-short: CTAN
  type: webpage
  url: "http://www.ctan.org"
---


```