Home | 简体中文 | 繁体中文 | 杂文 | 知乎专栏 | 51CTO学院 | CSDN程序员研修院 | Github | OSChina 博客 | 腾讯云社区 | 阿里云栖社区 | Facebook | Linkedin | Youtube | 打赏(Donations) | About
知乎专栏多维度架构

第 9 章 Table 表格

目录

9.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>
		
	

表 9.1. 表格标题

列标题1列标题2
列内容1列内容2

9.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