Previous: Multitable Column Widths, Up: Multi-column Tables
列の幅を定義する@multitable
(前のセクション参照)の後で,
@item
で複数列の表の本体にそれぞれの行を開始し,列項目を
@tab
で分けます.改行は表の本体で特別扱いされず,必要な場所でソー
スファイルの入力行を改行してもかまいません.
複数列の表の完全な例は以下のようになります(The GNU Emacs Manualか らのテキストで,see Splitting Windows).
@multitable @columnfractions .15 .45 .4 @item Key @tab Command @tab Description @item C-x 2 @tab @code{split-window-vertically} @tab Split the selected window into two windows, with one above the other. @item C-x 3 @tab @code{split-window-horizontally} @tab Split the selected window into two windows positioned side by side. @item C-Mouse-2 @tab @tab In the mode line or scroll bar of a window, split that window. @end multitable
以下を生成します.
Key | Command | Description
|
C-x 2 | split-window-vertically
| Split the selected window into two windows,
with one above the other.
|
C-x 3 | split-window-horizontally
| Split the selected window into two windows
positioned side by side.
|
C-Mouse-2 | In the mode line or scroll bar of a window,
split that window.
|