diff options
author | Jeffrey H. Kingston <jeff@it.usyd.edu.au> | 2010-09-14 19:21:41 +0000 |
---|---|---|
committer | Jeffrey H. Kingston <jeff@it.usyd.edu.au> | 2010-09-14 19:21:41 +0000 |
commit | 71bdb35d52747e6d7d9f55df4524d57c2966be94 (patch) | |
tree | 480ee5eefccc40d5f3331cc52d66f722fd19bfb9 /doc/user/tbl_rows | |
parent | b41263ea7578fa9742486135c762803b52794105 (diff) | |
download | lout-71bdb35d52747e6d7d9f55df4524d57c2966be94.tar.gz |
Lout 3.17.
git-svn-id: http://svn.savannah.nongnu.org/svn/lout/trunk@2 9365b830-b601-4143-9ba8-b4a8e2c3339c
Diffstat (limited to 'doc/user/tbl_rows')
-rw-r--r-- | doc/user/tbl_rows | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/doc/user/tbl_rows b/doc/user/tbl_rows new file mode 100644 index 0000000..7d26b75 --- /dev/null +++ b/doc/user/tbl_rows @@ -0,0 +1,59 @@ +@Section + @Title { Changing the appearance of rows } + @Tag { tbl_rows } +@Begin +@PP +We've seen that the @Code aformat option of @Code "@Tbl" determines the +format of the rows introduced by the @Code "@Rowa" symbol. There are +eight of these row format options: {@Code aformat}, +row.formats @Index { row formats in tables } +{@Code bformat}, and so on up to {@Code hformat}, and for each there +is a corresponding {@Code "@Row"} symbol: {@Code "@Rowa"}, {@Code "@Rowb"}, +and so on up to {@Code "@Rowh"}: +@ID @OneRow @Code @Verbatim { +@Tbl + aformat { @Cell @I A | @Cell @I B } + bformat { @Cell A | @Cell B } +{ +@Rowa + A { Name } + B { Nationality } +@Rowb + A { Austen } + B { English } +@Rowb + A { Balzac } + B { French } +} +} +The result of this is +@CD @OneRow @Tbl + aformat { @Cell @I A | @Cell @I B } + bformat { @Cell A | @Cell B } +{ +@Rowa + A { Name } + B { Nationality } +@Rowb + A { Austen } + B { English } +@Rowb + A { Balzac } + B { French } +} +The first row, being a {@Code "@Rowa"}, is formatted using +{@Code aformat}; the others, being {@Code "@Rowb"} symbols, are +formatted using {@Code bformat}. +@PP +In addition to the eight @Code format options of {@Code "@Tbl"}, it is +possible to specify the format of a row at the row itself, using the +@Code "@Row" symbol like this: +@ID @OneRow @Code @Verbatim { +@Row + format { @Cell @B A | @Cell paint { lightgrey } B } + A { ... } + B { ... } +} +All formats must contain the same number of cells, otherwise the table +will not be rectangular. +@End @Section |