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
|
```
% pandoc -f biblatex -t markdown -s
@comment{
Adapted from biblatex-example.bib
Formatted with pandoc and chicago-author-date.csl, 2013-10-23:
(Loh 1992)
Loh, Nin C. 1992. “High-resolution Micromachined Interferometric
Accelerometer.” Master’s thesis, Cambridge, Mass.: Massachusetts
Institute of Technology.
Formatted with pandoc and apa.csl, 2013-10-23:
(Loh, 1992)
Loh, N. C. (1992). *High-resolution micromachined interferometric
accelerometer* (Master’s thesis). Massachusetts Institute of Technology,
Cambridge, Mass.
NOTES:
- biblio2yaml
- At some point, actual localization of "localization keys" will have to be implemented
}
@Thesis{loh,
author = {Loh, Nin C.},
title = {High-Resolution Micromachined Interferometric Accelerometer},
type = {mathesis},
institution = {Massachusetts Institute of Technology},
date = 1992,
location = {Cambridge, Mass.},
hyphenation = {american},
annotation = {This is a typical thesis entry for an MA thesis. Note
the type field in the database file which uses a
localization key},
}
^D
---
nocite: "[@*]"
references:
- annote: This is a typical thesis entry for an MA thesis. Note the type
field in the database file which uses a localization key
author:
- family: Loh
given: Nin C.
genre: Master's thesis
id: loh
issued: 1992
language: en-US
publisher: Massachusetts Institute of Technology
publisher-place: Cambridge, Mass.
title: High-resolution micromachined interferometric accelerometer
type: thesis
---
```
|