blob: d688884c47815d283354c2f9e848b594dec216a1 (
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
|
<?xml version="1.0" encoding="utf-8"?>
<book id="listing" title="我的书单">
<chapter id="books">
<title>我的书</title>
<para>
<informaltable>
<tgroup cols="4">
<thead>
<row>
<entry>标题</entry>
<entry>作者</entry>
<entry>语言</entry>
<entry>ISBN</entry>
</row>
</thead>
<tbody>
<row>
<entry>The Grapes of Wrath</entry>
<entry>John Steinbeck</entry>
<entry>en</entry>
<entry>0140186409</entry>
</row>
<row>
<entry>The Pearl</entry>
<entry>John Steinbeck</entry>
<entry>en</entry>
<entry>014017737X</entry>
</row>
<row>
<entry>Samarcande</entry>
<entry>Amine Maalouf</entry>
<entry>fr</entry>
<entry>2253051209</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</para>
</chapter>
</book>
|