Fixed tests for new ConTeXt writer behavior.
This commit is contained in:
parent
bb0f299165
commit
dde484f809
2 changed files with 10 additions and 9 deletions
|
@ -1,6 +1,6 @@
|
|||
Simple table with caption:
|
||||
|
||||
\placetable[here]{Demonstration of simple table syntax.}
|
||||
\placetable{Demonstration of simple table syntax.}
|
||||
\starttable[|r|l|c|l|]
|
||||
\HL
|
||||
\NC Right
|
||||
|
@ -29,7 +29,7 @@ Simple table with caption:
|
|||
|
||||
Simple table without caption:
|
||||
|
||||
\placetable[here,none]{}
|
||||
\placetable[none]{}
|
||||
\starttable[|r|l|c|l|]
|
||||
\HL
|
||||
\NC Right
|
||||
|
@ -58,7 +58,7 @@ Simple table without caption:
|
|||
|
||||
Simple table indented two spaces:
|
||||
|
||||
\placetable[here]{Demonstration of simple table syntax.}
|
||||
\placetable{Demonstration of simple table syntax.}
|
||||
\starttable[|r|l|c|l|]
|
||||
\HL
|
||||
\NC Right
|
||||
|
@ -87,7 +87,7 @@ Simple table indented two spaces:
|
|||
|
||||
Multiline table with caption:
|
||||
|
||||
\placetable[here]{Here's the caption. It may span multiple lines.}
|
||||
\placetable{Here's the caption. It may span multiple lines.}
|
||||
\starttable[|cp(0.15\textwidth)|lp(0.14\textwidth)|rp(0.16\textwidth)|lp(0.34\textwidth)|]
|
||||
\HL
|
||||
\NC Centered Header
|
||||
|
@ -111,7 +111,7 @@ Multiline table with caption:
|
|||
|
||||
Multiline table without caption:
|
||||
|
||||
\placetable[here,none]{}
|
||||
\placetable[none]{}
|
||||
\starttable[|cp(0.15\textwidth)|lp(0.14\textwidth)|rp(0.16\textwidth)|lp(0.34\textwidth)|]
|
||||
\HL
|
||||
\NC Centered Header
|
||||
|
@ -135,7 +135,7 @@ Multiline table without caption:
|
|||
|
||||
Table without column headers:
|
||||
|
||||
\placetable[here,none]{}
|
||||
\placetable[none]{}
|
||||
\starttable[|r|l|c|r|]
|
||||
\HL
|
||||
\NC 12
|
||||
|
@ -158,7 +158,7 @@ Table without column headers:
|
|||
|
||||
Multiline table without column headers:
|
||||
|
||||
\placetable[here,none]{}
|
||||
\placetable[none]{}
|
||||
\starttable[|cp(0.15\textwidth)|lp(0.14\textwidth)|rp(0.16\textwidth)|lp(0.34\textwidth)|]
|
||||
\HL
|
||||
\NC First
|
||||
|
|
|
@ -30,7 +30,8 @@
|
|||
\setupitemize[autointro] % prevent orphan list intro
|
||||
\setupitemize[indentnext=no]
|
||||
|
||||
\setupcaption[figure][number=no] % don't number figures
|
||||
\setupfloat[figure][default={here,nonumber}]
|
||||
\setupfloat[table][default={here,nonumber}]
|
||||
|
||||
\setupthinrules[width=15em] % width of horizontal rules
|
||||
|
||||
|
@ -844,7 +845,7 @@ or here: <http://example.com/>
|
|||
|
||||
From \quotation{Voyage dans la Lune} by Georges Melies (1902):
|
||||
|
||||
\placefigure[here]{lalune}{\externalfigure[lalune.jpg]}
|
||||
\placefigure{lalune}{\externalfigure[lalune.jpg]}
|
||||
|
||||
Here is a movie {\externalfigure[movie.jpg]} icon.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue