1More Tables
2-----------
3
4A table with multi-paragraph multicolumn cells:
5
6+----------+--------------+---------------------------------+-----------+
7| test     | **bold hd**  | multicolumn 1                   | *emph hd* |
8|          |              |                                 |           |
9|          |              | With a second paragraph         |           |
10+----------+--------------+--------------+--------+---------+-----------+
11| multicolumn 2           | cell         | cell   | cell    | cell      |
12|                         |              |        |         |           |
13| With a second paragraph |              |        |         |           |
14+----------+--------------+--------------+--------+---------+-----------+
15| cell     | multicolumn 3 (one line,    | cell   | cell    | cell      |
16|          | but very very very very     |        |         |           |
17|          | very looooong)              |        |         |           |
18+----------+--------------+--------------+--------+---------+-----------+
19| cell     | cell         | cell         | Short multicolumn 4          |
20+----------+--------------+--------------+------------------------------+
21
22Tables with multi-paragraph multirow cells currently fail due to a LaTeX
23limitation (see https://sourceforge.net/p/docutils/bugs/225/).
24
25A table with multirow header and column-widths set by LaTeX:
26
27.. table::
28   :widths: auto
29
30   +------------+-------------------+
31   | XXX        | Variable Summary  |
32   |            +-------------------+
33   |            | Description       |
34   +============+===================+
35   | multicollumn cell              |
36   +--------------------------------+
37
38In a table with column-widths set by LaTeX, each cell has just one line.
39Paragraphs are merged (a warning is given).
40
41.. table::
42   :widths: auto
43
44   +------------+-------------------+
45   | 11         | first paragraph   |
46   |            |                   |
47   |            | second paragraph  |
48   |            |                   |
49   |            | third paragraph   |
50   +------------+-------------------+
51   | 21         | 22                |
52   +------------+-------------------+
53