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
65
66
67
68
69
70
71
72
73
74
75
76
77
|
```
% pandoc -f biblatex -t markdown -s
@comment{
Adapted from biblatex-example.bib
Formatted with pandoc and chicago-author-date.csl, 2013-10-23:
(Chiu and Chow 1978)
Chiu, Willy W., and We Min Chow. 1978. “A Hybrid Hierarchical Model of a
Multiple Virtual Storage (MVS) Operating System.” Research report
RC-6947. IBM.
Formatted with pandoc and apa.csl, 2013-10-23:
(Chiu & Chow, 1978)
Chiu, W. W., & Chow, W. M. (1978). *A hybrid hierarchical model of a
multiple virtual storage (MVS) operating system* (research report No.
RC-6947). IBM.
NOTES:
- biblio2yaml
- "MVS", when not wrapped in {}, gives "mVS", which is probably never intended, or useful (latex converts the whole word to lowercase if unprotected ("MVS" -> "mvs"))
}
@Report{chiu,
author = {Chiu, Willy W. and Chow, We Min},
title = {A Hybrid Hierarchical Model of a Multiple Virtual Storage
({MVS}) Operating System},
type = {resreport},
institution = {IBM},
date = 1978,
number = {RC-6947},
hyphenation = {american},
sorttitle = {Hybrid Hierarchical Model of a Multiple Virtual Storage (MVS)
Operating System},
indextitle = {Hybrid Hierarchical Model, A},
annotation = {This is a report entry for a research report. Note
the format of the type field in the database file
which uses a localization key. The number of the report is
given in the number field. Also note the
sorttitle and indextitle fields},
}
^D
---
nocite: "[@*]"
references:
- annote: This is a report entry for a research report. Note the format
of the type field in the database file which uses a localization
key. The number of the report is given in the number field. Also
note the sorttitle and indextitle fields
author:
- family: Chiu
given: Willy W.
- family: Chow
given: We Min
genre: research report
id: chiu
issued: 1978
language: en-US
number: RC-6947
publisher: IBM
title: A hybrid hierarchical model of a multiple virtual storage (MVS)
operating system
type: report
---
```
|