\SetTableToWidth undefined?
Hello all, I have just noticed that \SetTableToWidth does not work in MKIV. Simple example below. \starttext \SetTableToWidth{8cm} \starttable[|l|l|] \NC One \NC Two \NC\SR \NC Three \NC Four \NC\LR \stoptable \stoptext I get the error: ! Undefined control sequence. l.3 \SetTableToWidth {8cm} It does work in MKII and also works if you use \tableSetTableToWidth. Have I missed something, is something wrong or is it just me? Thanks, Richard Converteam UK Ltd. Registration Number: 5571739 and Converteam Ltd. Registration Number: 2416188 Registered in England and Wales. Registered office: Boughton Road, Rugby, Warwickshire, CV21 1BU. CONFIDENTIALITY : This e-mail and any attachments are confidential and may be privileged. If you are not a named recipient, please notify the sender immediately and do not disclose the contents to another person, use it for any purpose or store or copy the information in any medium. http://www.converteam.com Please consider the environment before printing this e-mail.
2010/11/30 Richard Stephens
Hello all,
I have just noticed that \SetTableToWidth does not work in MKIV. Simple example below.
\starttext \SetTableToWidth{8cm} \starttable[|l|l|] \NC One \NC Two \NC\SR \NC Three \NC Four \NC\LR \stoptable \stoptext
I get the error:
! Undefined control sequence. l.3 \SetTableToWidth {8cm}
It does work in MKII and also works if you use \tableSetTableToWidth.
Have I missed something, is something wrong or is it just me?
Same here. Regards, Vedran Miletić
On 6-12-2010 10:47, Vedran Miletić wrote:
2010/11/30 Richard Stephens
Hello all,
I have just noticed that \SetTableToWidth does not work in MKIV. Simple example below.
\starttext \SetTableToWidth{8cm} \starttable[|l|l|] \NC One \NC Two \NC\SR \NC Three \NC Four \NC\LR \stoptable \stoptext
I get the error:
! Undefined control sequence. l.3 \SetTableToWidth {8cm}
It does work in MKII and also works if you use \tableSetTableToWidth.
Have I missed something, is something wrong or is it just me?
table is under reconstruction (cleaned up, stripped from obscure options, made a bit more context) \SetTableWidth is too global so it's gone ... instead there will be \starttable[|l|l|][textwidth=8cm] % or textwidth=max % SetTableToWidth -> textwidth=dimension % Expand -> textwidth=max % WidenTableBy -> no proper key yet % LongLines -> no proper key yet the textwidth option will be in the next beta (only mkiv, no changes to mkii). Hans ----------------------------------------------------------------- Hans Hagen | PRAGMA ADE Ridderstraat 27 | 8061 GH Hasselt | The Netherlands tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com | www.pragma-pod.nl -----------------------------------------------------------------
On Tue, Dec 07, 2010 at 10:10:01AM +0100, Hans Hagen wrote:
On 6-12-2010 10:47, Vedran Miletić wrote:
2010/11/30 Richard Stephens
Hello all,
I have just noticed that \SetTableToWidth does not work in MKIV. Simple example below.
\starttext \SetTableToWidth{8cm} \starttable[|l|l|] \NC One \NC Two \NC\SR \NC Three \NC Four \NC\LR \stoptable \stoptext
I get the error:
! Undefined control sequence. l.3 \SetTableToWidth {8cm}
It does work in MKII and also works if you use \tableSetTableToWidth.
Have I missed something, is something wrong or is it just me?
table is under reconstruction (cleaned up, stripped from obscure options, made a bit more context)
\SetTableWidth is too global so it's gone ... instead there will be
\starttable[|l|l|][textwidth=8cm] % or textwidth=max
% SetTableToWidth -> textwidth=dimension % Expand -> textwidth=max % WidenTableBy -> no proper key yet % LongLines -> no proper key yet
the textwidth option will be in the next beta (only mkiv, no changes to mkii).
But I'm using \SetTableToWidth right now to set the width for all tables at once, what is replacement of that (I'm using texlive right now, and I hate to break the brand new document when I switch back to minimals). Regards, Khaled -- Khaled Hosny Arabic localiser and member of Arabeyes.org team Free font developer
On 7-12-2010 2:00, Khaled Hosny wrote:
But I'm using \SetTableToWidth right now to set the width for all tables at once, what is replacement of that (I'm using texlive right now, and I hate to break the brand new document when I switch back to minimals).
just do \setuptables[textwidth=...] then (once) or \doifundefined{SetTableToWidth}{\setuptables[textwidth=...]} Hans ----------------------------------------------------------------- Hans Hagen | PRAGMA ADE Ridderstraat 27 | 8061 GH Hasselt | The Netherlands tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com | www.pragma-pod.nl -----------------------------------------------------------------
On Tue, Dec 07, 2010 at 02:24:37PM +0100, Hans Hagen wrote:
On 7-12-2010 2:00, Khaled Hosny wrote:
But I'm using \SetTableToWidth right now to set the width for all tables at once, what is replacement of that (I'm using texlive right now, and I hate to break the brand new document when I switch back to minimals).
just do \setuptables[textwidth=...] then (once)
Ah, that is fine, stupid me :) Actually I was feeling guilty for not using a \setupfoo command. Regards, Khaled -- Khaled Hosny Arabic localiser and member of Arabeyes.org team Free font developer
2010/12/7 Hans Hagen
On 7-12-2010 2:00, Khaled Hosny wrote:
But I'm using \SetTableToWidth right now to set the width for all tables
at once, what is replacement of that (I'm using texlive right now, and I hate to break the brand new document when I switch back to minimals).
just do \setuptables[textwidth=...] then (once)
Why setuptables, why not just setuptable? Regards, Vedran Miletić
On 8-12-2010 1:00, Vedran Miletić wrote:
2010/12/7 Hans Hagen
On 7-12-2010 2:00, Khaled Hosny wrote:
But I'm using \SetTableToWidth right now to set the width for all tables
at once, what is replacement of that (I'm using texlive right now, and I hate to break the brand new document when I switch back to minimals).
just do \setuptables[textwidth=...] then (once)
Why setuptables, why not just setuptable?
has always been the case .. you set them up all at once ----------------------------------------------------------------- Hans Hagen | PRAGMA ADE Ridderstraat 27 | 8061 GH Hasselt | The Netherlands tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com | www.pragma-pod.nl -----------------------------------------------------------------
On 6-12-2010 10:47, Vedran Miletić wrote:
2010/11/30 Richard Stephens
Hello all,
I have just noticed that \SetTableToWidth does not work in MKIV. Simple example below.
btw, those using the starttable mechanism are also made responsible for keeping the documentation (on the wiki) uptodate Hans ----------------------------------------------------------------- Hans Hagen | PRAGMA ADE Ridderstraat 27 | 8061 GH Hasselt | The Netherlands tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com | www.pragma-pod.nl -----------------------------------------------------------------
participants (4)
-
Hans Hagen
-
Khaled Hosny
-
Richard Stephens
-
Vedran Miletić