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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
```
% pandoc -f markdown -t jats_publishing+element_citations --citeproc -s
---
nocite: "[@*]"
references:
- author:
- family: Jane
given: Doe
container-title: Public Library of Tests
id: year-month
issued: 1999-08
title: Year and month
type: article-journal
- accessed: 1999-01-22
author:
- family: Negidius
given: Numerius
- literal: others
container-title: Public Library of Tests
id: access-date
issued: 1911-10-03
title: Entry with access date and et al.
type: article-journal
- author:
- family: Beethoven
given: Ludwig
dropping-particle: van
- family: Bray
given: Jan
non-dropping-particle: de
container-title: Public Library of Tests
id: name-particles
issued: 1820
title: Name particles, dropping and non-dropping
type: article-journal
- author:
- 宮水 三葉
- 立花 瀧
title: Big Book of Tests
id: book-with-japanese-authors
issued: 2016
type: book
- author:
- family: Watson
given: J. D.
- family: Crick
given: F. H. C.
container-title: Nature
doi: '10.1038/171737a0'
id: full-journal-article-entry
issue: 4356
issued: '1953-04-01'
page: 737-738
pmid: 13054692
title: 'Molecular Structure of Nucleic Acids: A Structure for Deoxyribose Nucleic Acid'
type: article-journal
volume: 171
...
^D
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Publishing DTD v1.2 20190208//EN"
"JATS-publishing1.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>
<permissions>
</permissions>
</article-meta>
</front>
<body>
</body>
<back>
<ref-list>
<title></title>
<ref id="ref-year-month">
<element-citation publication-type="article-journal">
<person-group person-group-type="author">
<name><surname>Jane</surname><given-names>Doe</given-names></name>
</person-group>
<article-title>Year and month</article-title>
<source>Public Library of Tests</source>
<year iso-8601-date="1999-08">1999</year><month>08</month>
</element-citation>
</ref>
<ref id="ref-access-date">
<element-citation publication-type="article-journal">
<person-group person-group-type="author">
<name><surname>Negidius</surname><given-names>Numerius</given-names></name>
<etal/>
</person-group>
<article-title>Entry with access date and et al.</article-title>
<source>Public Library of Tests</source>
<year iso-8601-date="1911-10-03">1911</year><month>10</month><day>03</day>
<date-in-citation content-type="access-date"><year iso-8601-date="1999-01-22">1999</year><month>01</month><day>22</day></date-in-citation>
</element-citation>
</ref>
<ref id="ref-name-particles">
<element-citation publication-type="article-journal">
<person-group person-group-type="author">
<name><surname>Beethoven</surname><given-names>Ludwig van</given-names></name>
<name><surname>de Bray</surname><given-names>Jan</given-names></name>
</person-group>
<article-title>Name particles, dropping and non-dropping</article-title>
<source>Public Library of Tests</source>
<year iso-8601-date="1820">1820</year>
</element-citation>
</ref>
<ref id="ref-book-with-japanese-authors">
<element-citation publication-type="book">
<person-group person-group-type="author">
<string-name>宮水 三葉</string-name>
<string-name>立花 瀧</string-name>
</person-group>
<source>Big Book of Tests</source>
<year iso-8601-date="2016">2016</year>
</element-citation>
</ref>
<ref id="ref-full-journal-article-entry">
<element-citation publication-type="article-journal">
<person-group person-group-type="author">
<name><surname>Watson</surname><given-names>J. D.</given-names></name>
<name><surname>Crick</surname><given-names>F. H. C.</given-names></name>
</person-group>
<article-title>Molecular Structure of Nucleic Acids: A Structure for Deoxyribose Nucleic Acid</article-title>
<source>Nature</source>
<year iso-8601-date="1953-04-01">1953</year><month>04</month><day>01</day>
<volume>171</volume>
<issue>4356</issue>
<pub-id pub-id-type="doi">10.1038/171737a0</pub-id>
<pub-id pub-id-type="pmid">13054692</pub-id>
<fpage>737</fpage>
<lpage>738</lpage>
</element-citation>
</ref>
</ref-list>
</back>
</article>
```
|