blob: c2d791ce98dab844de792b0ccec6a4f120f846b7 (
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
|
```
% pandoc --citeproc --to=jats_archiving --standalone
---
csl: command/apa.csl
references:
- id: doe
type: article
author:
- family: Doe
given: Jane
container-title: Proceedings of the Academy of Test Inputs
doi: 10.x/nope
issued: 2021
title: Another article
...
Blah [@doe].
^D
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.2 20190208//EN"
"JATS-archivearticle1.dtd">
<article xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:xlink="http://www.w3.org/1999/xlink" dtd-version="1.2" article-type="other">
<front>
<journal-meta>
<journal-id></journal-id>
<journal-title-group>
</journal-title-group>
<issn></issn>
<publisher>
<publisher-name></publisher-name>
</publisher>
</journal-meta>
<article-meta>
</article-meta>
</front>
<body>
<p>Blah (Doe, 2021).</p>
</body>
<back>
<ref-list>
<ref id="ref-doe">
<mixed-citation>Doe, J. (2021). Another article. <italic>Proceedings
of the Academy of Test Inputs</italic>.
doi:<ext-link ext-link-type="uri" xlink:href="https://doi.org/10.x/nope">10.x/nope</ext-link></mixed-citation>
</ref>
</ref-list>
</back>
</article>
```
|