blob: b2cca565412c656e2a7f1fde888bc3a6545d8eff (
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
|
```
% pandoc -f biblatex -t markdown -s
@comment{
Adapted from biblatex-example.bib
Formatted with pandoc and chicago-author-date.csl, 2013-10-23:
(“Semantic 3D Media and Content” 2011)
“Semantic 3D Media and Content.” 2011. *Computers and Graphics* 35 (4).
Formatted with pandoc and apa.csl, 2013-10-23:
(“Semantic 3D media and content,” 2011)
Semantic 3D media and content. (2011). *Computers and Graphics*,
*35*(4).
NOTES:
- output looks OK even if indistinguishable from article without page numbers
}
@Periodical{jcg,
title = {Computers and Graphics},
year = 2011,
issuetitle = {Semantic {3D} Media and Content},
volume = 35,
number = 4,
issn = {0097-8493},
annotation = {This is a periodical entry with an issn
field.},
}
^D
---
nocite: "[@*]"
references:
- annote: This is a periodical entry with an issn field.
container-title: Computers and Graphics
id: jcg
issn: 0097-8493
issue: 4
issued: 2011
title: Semantic 3D media and content
type: article-journal
volume: 35
---
```
|