Home | 簡體中文 | 繁體中文 | 雜文 | 知乎專欄 | Github | OSChina 博客 | 雲社區 | 雲棲社區 | Facebook | Linkedin | 視頻教程 | 打賞(Donations) | About
知乎專欄多維度架構 | 微信號 netkiller-ebook | QQ群:128659835 請註明“讀者”

第 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