ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* xtables doesn't work in CLD
@ 2015-12-31 13:57 Romain Diss
  2016-01-02 10:28 ` Hans Hagen
  0 siblings, 1 reply; 3+ messages in thread
From: Romain Diss @ 2015-12-31 13:57 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hi all,

I am trying to use xtables in a CLD document but when I add a row, it
doesn't compile anymore. Is there something wrong? If xtables is not
usable with CLD, what is the best set of table commands to use with CLD?

% Minimum not working example :
context.starttext()                                                                                                           
context.startxtable()
    context.startxrow()
        context.startxcell()
        context("Test")
        context.stopxcell()
    context.stopxrow()
context.stopxtable()
context.stoptext()
% end of the example.

All the best.

-- 
Romain Diss
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: xtables doesn't work in CLD
  2015-12-31 13:57 xtables doesn't work in CLD Romain Diss
@ 2016-01-02 10:28 ` Hans Hagen
  2016-01-18 15:25   ` Romain Diss
  0 siblings, 1 reply; 3+ messages in thread
From: Hans Hagen @ 2016-01-02 10:28 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On 12/31/2015 2:57 PM, Romain Diss wrote:
> Hi all,
>
> I am trying to use xtables in a CLD document but when I add a row, it
> doesn't compile anymore. Is there something wrong? If xtables is not
> usable with CLD, what is the best set of table commands to use with CLD?
>
> % Minimum not working example :
> context.starttext()
> context.startxtable()
>      context.startxrow()
>          context.startxcell()
>          context("Test")
>          context.stopxcell()
>      context.stopxrow()
> context.stopxtable()
> context.stoptext()
> % end of the example.

that has to do with the fact that such a table gets buffered (it needs 
several passes)

i added an experimental trick to the next beta that makes this run ok

\starttext

\startluacode
context.startxtable()
     for i=1,30 do
         context.startxrow()
             for i=1,6 do
                 context.startxcell()
                     context.formatted.bold("test: %s",i)
                 context.stopxcell()
                 context.startxcell()
                     context.formatted.italic("test: %s",i)
                 context.stopxcell()
             end
         context.stopxrow()
     end
context.stopxtable()
\stopluacode

\stoptext


-----------------------------------------------------------------
                                           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
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: xtables doesn't work in CLD
  2016-01-02 10:28 ` Hans Hagen
@ 2016-01-18 15:25   ` Romain Diss
  0 siblings, 0 replies; 3+ messages in thread
From: Romain Diss @ 2016-01-18 15:25 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hi,

Le 02/01/2016, Hans Hagen a écrit
> On 12/31/2015 2:57 PM, Romain Diss wrote:
> >Hi all,
> >
> >I am trying to use xtables in a CLD document but when I add a row, it
> >doesn't compile anymore. Is there something wrong? If xtables is not
> >usable with CLD, what is the best set of table commands to use with CLD?
> >
> >% Minimum not working example :
> >context.starttext()
> >context.startxtable()
> >     context.startxrow()
> >         context.startxcell()
> >         context("Test")
> >         context.stopxcell()
> >     context.stopxrow()
> >context.stopxtable()
> >context.stoptext()
> >% end of the example.
> 
> that has to do with the fact that such a table gets buffered (it needs
> several passes)
> 
> i added an experimental trick to the next beta that makes this run ok
It works well, thank you very much.

All the best.

-- 
Romain Diss
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-01-18 15:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-31 13:57 xtables doesn't work in CLD Romain Diss
2016-01-02 10:28 ` Hans Hagen
2016-01-18 15:25   ` Romain Diss

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).