目录
- 13.1. informaltable
<table> <title>表格标题</title> <tgroup cols="2"> <thead> <row> <entry>列标题1</entry> <entry>列标题2</entry> </row> </thead> <tbody> <row> <entry>列内容1</entry> <entry>列内容2</entry> </row> ... </tbody> </tgroup> </table>
表 13.1. 表格标题
列标题1 | 列标题2 |
---|---|
列内容1 | 列内容2 |
13.1. informaltable
< article xmlns='http://docbook.org/ns/docbook'>
<title>Example footnoteref</title>
<informaltable>
<tgroup cols='2'>
<tbody>
<row>
<entry>foo<footnote xml:id='fnrex1a'><para>A meaningless word</para></footnote></entry>
<entry>3<footnote xml:id='fnrex1b'><para>A meaningless number</para></footnote></entry>
</row>
<row>
<entry>bar<footnoteref linkend='fnrex1a'/></entry>
<entry>5<footnoteref linkend='fnrex1b'/></entry>
</row>
</tbody>
</tgroup>
</informaltable>
< /article>
foo[a] | 3[b] |
bar[a] | 5[b] |
[a] A meaningless word [b] A meaningless number |
原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。