-
Notifications
You must be signed in to change notification settings - Fork 425
/
Copy patharticle.xml
executable file
·38 lines (30 loc) · 1000 Bytes
/
article.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="stylesheet/docbook-markdown.xsl"?>
<!DOCTYPE subject SYSTEM "/usr/share/xml/docbook/schema/dtd/5.0/docbook.dtd">
<article>
<articleinfo>
<title>An example article</title>
<author>
<firstname>Your first name</firstname>
<surname>Your surname</surname>
<affiliation>
<address><email>foo@example.com</email></address>
</affiliation>
</author>
<copyright>
<year>2000</year>
<holder>Copyright string here</holder>
</copyright>
<abstract>
<para>If your article has an abstract then it should go here.</para>
</abstract>
</articleinfo>
<section>
<title>My first section</title>
<para>This is the first section in my article.</para>
<section>
<title>My first sub-section</title>
<para>This is the first sub-section in my article.</para>
</section>
</section>
</article>