Hello, How could I get a column with 0 width (useful for dummy columns). Example, that shows, that the width is not 0: \starttext \setupTABLE[width=0pt, offset=0pt, height=1cm] \bTABLE \bTR\bTD\eTD\eTR \eTABLE \framed[width=0pt, offset=0pt, height=1cm]{} \stoptext Cheers, Peter -- http://pmrb.free.fr/contact/
Hello, Is there any mechanism to span ROWS in (\start)tables similar to column spanning through \use{3}{}? The aim is to produce a multi-row column entry as can be done via \bTD[nr=3] in \bTABLE. Thanks Alan
On Fri, Sep 12, 2008 at 8:13 AM, Alan BRASLAU
Hello,
Is there any mechanism to span ROWS in (\start)tables similar to column spanning through \use{3}{}? The aim is to produce a multi-row column entry as can be done via \bTD[nr=3] in \bTABLE.
\NC \use{3} ... \NC ... or \NC \THREE ... \NC ... You can find more information on the wiki page: http://wiki.contextgarden.net/Table Wolfgang
On Friday 12 September 2008 08:34:15 Wolfgang Schuster wrote:
On Fri, Sep 12, 2008 at 8:13 AM, Alan BRASLAU
wrote: Is there any mechanism to span ROWS in (\start)tables similar to column spanning through \use{3}{}? The aim is to produce a multi-row column entry as can be done via \bTD[nr=3] in \bTABLE.
\NC \use{3} ... \NC ...
or
\NC \THREE ... \NC ...
You can find more information on the wiki page: http://wiki.contextgarden.net/Table
Wolfgang
This mechanism spans COLUMNS not rows. I would like to produce --------- | | b | | |---| | A | c | | |---| | | d | --------- using \starttables, as can be done with: \setupTABLE[c][1][align=lohi] \bTABLE \bTR \bTC[nr=3] A \eTC\bTC b \eTC \eTR \bTR \bTC c \eTC \eTR \bTR \bTC d \eTC \eTR \eTABLE Note that: \starttables[|c|c|] \HL \VL \VL b \VL\AR \DC \DL \DR \VL A \VL c \VL\AR \DC \DL \DR \VL \VL d \VL\LR \HL \stoptables does not quite do the job, since the aim is to put a tall object "A" spanning the three rows. Alan
On Fri, Sep 12, 2008 at 10:27 AM, Alan BRASLAU
On Friday 12 September 2008 08:34:15 Wolfgang Schuster wrote:
On Fri, Sep 12, 2008 at 8:13 AM, Alan BRASLAU
wrote: Is there any mechanism to span ROWS in (\start)tables similar to column spanning through \use{3}{}? The aim is to produce a multi-row column entry as can be done via \bTD[nr=3] in \bTABLE.
\NC \use{3} ... \NC ...
or
\NC \THREE ... \NC ...
You can find more information on the wiki page: http://wiki.contextgarden.net/Table
Wolfgang
This mechanism spans COLUMNS not rows.
Sorry for this wrong information.
I would like to produce --------- | | b | | |---| | A | c | | |---| | | d | --------- using \starttables, as can be done with: \setupTABLE[c][1][align=lohi] \bTABLE \bTR \bTC[nr=3] A \eTC\bTC b \eTC \eTR \bTR \bTC c \eTC \eTR \bTR \bTC d \eTC \eTR \eTABLE
Note that: \starttables[|c|c|] \HL \VL \VL b \VL\AR \DC \DL \DR \VL A \VL c \VL\AR
\VL \smash{\vcenter{\hbox{\definedfont[Serif at 70pt]A}}} \VL c \VL\AR
\DC \DL \DR \VL \VL d \VL\LR \HL \stoptables does not quite do the job, since the aim is to put a tall object "A" spanning the three rows.
Wolfgang
On Friday 12 September 2008 10:51:58 Wolfgang Schuster wrote:
\VL \smash{\vcenter{\hbox{\definedfont[Serif at 70pt]A}}} \VL c \VL\AR
Ah, TeX magic! Indeed, I never learned about \smash. Thank you (added a line to http://wiki.contextgarden.net/Table#Column_Spans) Alan
On Fri, 12 Sep 2008, Alan BRASLAU wrote:
On Friday 12 September 2008 08:34:15 Wolfgang Schuster wrote:
On Fri, Sep 12, 2008 at 8:13 AM, Alan BRASLAU
wrote: Is there any mechanism to span ROWS in (\start)tables similar to column spanning through \use{3}{}? The aim is to produce a multi-row column entry as can be done via \bTD[nr=3] in \bTABLE.
\NC \use{3} ... \NC ...
or
\NC \THREE ... \NC ...
You can find more information on the wiki page: http://wiki.contextgarden.net/Table
Wolfgang
This mechanism spans COLUMNS not rows.
I would like to produce --------- | | b | | |---| | A | c | | |---| | | d | --------- using \starttables, as can be done with: \setupTABLE[c][1][align=lohi] \bTABLE \bTR \bTC[nr=3] A \eTC\bTC b \eTC \eTR \bTR \bTC c \eTC \eTR \bTR \bTC d \eTC \eTR \eTABLE
Note that: \starttables[|c|c|] \HL \VL \VL b \VL\AR \DC \DL \DR \VL A \VL c \VL\AR \DC \DL \DR \VL \VL d \VL\LR \HL \stoptables does not quite do the job, since the aim is to put a tall object "A" spanning the three rows.
You can use \LOW and \LOWER. See http://www.tug.org/TUGboat/Articles/tb29-1/tb91mahajan.pdf Section 6. Aditya
On Tuesday 3 December 2002 17:57:00 Hans Hagen wrote:
Copied from the manual source: ... \index {form::entry}
The following minimal example works as expected: \setupregister[index][au][textstyle=\sc] \def\Index#1{\index{#1}#1} \def\Author#1{\index{au::#1}#1} \starttext The \index[TeX]{\TeX}\TeX \Index{typesetting} system (\Author{Knuth}) \page \completeindex \stoptext Within a large project using the above definitions, author entries in the index are typeset normally, not in \sc. However, if I use \setupregister[index][au][textstyle=boldslanted] I do get bold-slanted entries in my large project. Have I misunderstood the use of setupregister, or is this a bug? Thank you, in advance. Alan
On Thu, Sep 11, 2008 at 10:58 PM, Peter Münster
Hello,
How could I get a column with 0 width (useful for dummy columns).
Example, that shows, that the width is not 0:
\starttext \setupTABLE[width=0pt, offset=0pt, height=1cm] \bTABLE \bTR\bTD\eTD\eTR \eTABLE \framed[width=0pt, offset=0pt, height=1cm]{} \stoptext
use offset=overlay Wolfgang
participants (4)
-
Aditya Mahajan
-
Alan BRASLAU
-
Peter Münster
-
Wolfgang Schuster