Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/resources/formats/jats/pandoc/template.xml
12923 views
1
<?xml version="1.0" encoding="utf-8" ?>
2
$if(xml-stylesheet)$
3
<?xml-stylesheet type="text/xsl" href="$xml-stylesheet$"?>
4
$endif$
5
$if(quarto-internal.jats-dtd)$
6
<!DOCTYPE article PUBLIC "$quarto-internal.jats-dtd.name$" "$quarto-internal.jats-dtd.location$">
7
$endif$
8
9
$if(citation.jats-type)$
10
<article xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:xlink="http://www.w3.org/1999/xlink" dtd-version="1.2" article-type="$citation.jats-type$">
11
$elseif(citation.type)$
12
<article xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:xlink="http://www.w3.org/1999/xlink" dtd-version="1.2" article-type="$citation.type$">
13
$else$
14
<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">
15
$endif$
16
17
<front>
18
$front.xml()$
19
</front>
20
21
<body>
22
$body$
23
</body>
24
25
<back>
26
$if(back)$
27
$back$
28
$endif$
29
</back>
30
31
$for(include-after)$
32
$include-after$
33
$endfor$
34
35
</article>
36