summaryrefslogtreecommitdiff
path: root/tests/tables.texinfo
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2018-04-24 10:48:39 -0700
committerSean Whitton <spwhitton@spwhitton.name>2018-04-24 10:48:39 -0700
commitde5ee82ed0e287ada3a5b272d8365a04fe8e9f95 (patch)
tree126c941f08f4d1e2775a694d4fd7f7c859b4b81b /tests/tables.texinfo
parentabcbe3005117f90babc225ce958766845cf59d2b (diff)
parent5e6879dbf98eb5528c7f417b349118aadca40d71 (diff)
New upstream version 2.1.2~dfsg
Diffstat (limited to 'tests/tables.texinfo')
-rw-r--r--tests/tables.texinfo158
1 files changed, 0 insertions, 158 deletions
diff --git a/tests/tables.texinfo b/tests/tables.texinfo
deleted file mode 100644
index b82006f1a..000000000
--- a/tests/tables.texinfo
+++ /dev/null
@@ -1,158 +0,0 @@
-@node Top
-@top Top
-
-Simple table with caption:
-
-@float
-@multitable {Right} {Left} {Center} {Default}
-@headitem
-Right
- @tab Left
- @tab Center
- @tab Default
-@item
-12
- @tab 12
- @tab 12
- @tab 12
-@item
-123
- @tab 123
- @tab 123
- @tab 123
-@item
-1
- @tab 1
- @tab 1
- @tab 1
-@end multitable
-@caption{Demonstration of simple table syntax.}
-@end float
-Simple table without caption:
-
-@multitable {Right} {Left} {Center} {Default}
-@headitem
-Right
- @tab Left
- @tab Center
- @tab Default
-@item
-12
- @tab 12
- @tab 12
- @tab 12
-@item
-123
- @tab 123
- @tab 123
- @tab 123
-@item
-1
- @tab 1
- @tab 1
- @tab 1
-@end multitable
-
-Simple table indented two spaces:
-
-@float
-@multitable {Right} {Left} {Center} {Default}
-@headitem
-Right
- @tab Left
- @tab Center
- @tab Default
-@item
-12
- @tab 12
- @tab 12
- @tab 12
-@item
-123
- @tab 123
- @tab 123
- @tab 123
-@item
-1
- @tab 1
- @tab 1
- @tab 1
-@end multitable
-@caption{Demonstration of simple table syntax.}
-@end float
-Multiline table with caption:
-
-@float
-@multitable @columnfractions 0.15 0.14 0.16 0.34
-@headitem
-Centered Header
- @tab Left Aligned
- @tab Right Aligned
- @tab Default aligned
-@item
-First
- @tab row
- @tab 12.0
- @tab Example of a row that spans multiple lines.
-@item
-Second
- @tab row
- @tab 5.0
- @tab Here's another one. Note the blank line between rows.
-@end multitable
-@caption{Here's the caption. It may span multiple lines.}
-@end float
-Multiline table without caption:
-
-@multitable @columnfractions 0.15 0.14 0.16 0.34
-@headitem
-Centered Header
- @tab Left Aligned
- @tab Right Aligned
- @tab Default aligned
-@item
-First
- @tab row
- @tab 12.0
- @tab Example of a row that spans multiple lines.
-@item
-Second
- @tab row
- @tab 5.0
- @tab Here's another one. Note the blank line between rows.
-@end multitable
-
-Table without column headers:
-
-@multitable {123} {123} {123} {123}
-@item
-12
- @tab 12
- @tab 12
- @tab 12
-@item
-123
- @tab 123
- @tab 123
- @tab 123
-@item
-1
- @tab 1
- @tab 1
- @tab 1
-@end multitable
-
-Multiline table without column headers:
-
-@multitable @columnfractions 0.15 0.14 0.16 0.34
-@item
-First
- @tab row
- @tab 12.0
- @tab Example of a row that spans multiple lines.
-@item
-Second
- @tab row
- @tab 5.0
- @tab Here's another one. Note the blank line between rows.
-@end multitable