ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* splitting table cells/rows
@ 2016-06-07  8:34 Erik Margraf
  2016-06-07  9:23 ` Wolfgang Schuster
  0 siblings, 1 reply; 6+ messages in thread
From: Erik Margraf @ 2016-06-07  8:34 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 394 bytes --]

Dear list,

does context split table cells like Word (sorry for that ;-)) would do?
(Please see the attached pdf examples). The table_test was generated
with

\starttext


\bTABLE[split=yes]

\setupTABLE[frame=off]

\setupTABLE[column][1][width=3.5cm]

\setupTABLE[column][2][width=11cm]

\dorecurse{3}{\bTR \bTD xxx \eTD \bTD \input knuth \eTD \eTR}

\eTABLE


\stoptext


kind regards


Erik

[-- Attachment #1.2: Type: text/html, Size: 852 bytes --]

[-- Attachment #2: Dokument7.pdf --]
[-- Type: application/pdf, Size: 16514 bytes --]

[-- Attachment #3: table_test.pdf --]
[-- Type: application/pdf, Size: 10772 bytes --]

[-- Attachment #4: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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] 6+ messages in thread

* Re: splitting table cells/rows
  2016-06-07  8:34 splitting table cells/rows Erik Margraf
@ 2016-06-07  9:23 ` Wolfgang Schuster
  2016-06-07 19:28   ` Erik Margraf
  0 siblings, 1 reply; 6+ messages in thread
From: Wolfgang Schuster @ 2016-06-07  9:23 UTC (permalink / raw)
  To: erik.margraf, mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 662 bytes --]

> Erik Margraf <mailto:erik.margraf@gmail.com>
> 7. Juni 2016 um 10:34
> Dear list,
>
> does context split table cells like Word (sorry for that ;-)) would do?
> (Please see the attached pdf examples). The table_test was generated
> with
>
> \starttext
>
>
> \bTABLE[split=yes]
>
> \setupTABLE[frame=off]
>
> \setupTABLE[column][1][width=3.5cm]
>
> \setupTABLE[column][2][width=11cm]
>
> \dorecurse{3}{\bTR \bTD xxx \eTD \bTD \input knuth \eTD \eTR}
>
> \eTABLE
>
>
> \stoptext
>
The tabulate environment can split cells at a page break.

\starttext

\starttabulate[|w(3.5cm)|p|]
\dorecurse{4}{\NC xxx \NC \input knuth \NC\NR}
\stoptabulate

\stoptext

Wolfgang

[-- Attachment #1.2: Type: text/html, Size: 2031 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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] 6+ messages in thread

* Re: splitting table cells/rows
  2016-06-07  9:23 ` Wolfgang Schuster
@ 2016-06-07 19:28   ` Erik Margraf
  2016-06-07 20:48     ` Wolfgang Schuster
  0 siblings, 1 reply; 6+ messages in thread
From: Erik Margraf @ 2016-06-07 19:28 UTC (permalink / raw)
  To: Wolfgang Schuster; +Cc: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 866 bytes --]

Thanks, this works quite good for me!
Will the other table environments get this feature too?

Erik

On Tue, Jun 7, 2016 at 11:23 AM, Wolfgang Schuster <
schuster.wolfgang@gmail.com> wrote:

> Erik Margraf <erik.margraf@gmail.com>
> 7. Juni 2016 um 10:34
> Dear list,
>
> does context split table cells like Word (sorry for that ;-)) would do?
> (Please see the attached pdf examples). The table_test was generated
> with
>
> \starttext
>
>
> \bTABLE[split=yes]
>
> \setupTABLE[frame=off]
>
> \setupTABLE[column][1][width=3.5cm]
>
> \setupTABLE[column][2][width=11cm]
>
> \dorecurse{3}{\bTR \bTD xxx \eTD \bTD \input knuth \eTD \eTR}
>
> \eTABLE
>
>
> \stoptext
>
> The tabulate environment can split cells at a page break.
>
> \starttext
>
> \starttabulate[|w(3.5cm)|p|]
> \dorecurse{4}{\NC xxx \NC \input knuth \NC\NR}
> \stoptabulate
>
> \stoptext
>
> Wolfgang
>

[-- Attachment #1.2: Type: text/html, Size: 2364 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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] 6+ messages in thread

* Re: splitting table cells/rows
  2016-06-07 19:28   ` Erik Margraf
@ 2016-06-07 20:48     ` Wolfgang Schuster
  2016-06-08  3:24       ` Henning Hraban Ramm
  0 siblings, 1 reply; 6+ messages in thread
From: Wolfgang Schuster @ 2016-06-07 20:48 UTC (permalink / raw)
  To: erik.margraf; +Cc: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 222 bytes --]

> Erik Margraf <mailto:erik.margraf@gmail.com>
> 7. Juni 2016 um 21:28
> Thanks, this works quite good for me!
> Will the other table environments get this feature too?
No, it’s a tabulate only feature.

Wolfgang

[-- Attachment #1.2: Type: text/html, Size: 1253 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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] 6+ messages in thread

* Re: splitting table cells/rows
  2016-06-07 20:48     ` Wolfgang Schuster
@ 2016-06-08  3:24       ` Henning Hraban Ramm
  2016-06-08  5:45         ` Erik Margraf
  0 siblings, 1 reply; 6+ messages in thread
From: Henning Hraban Ramm @ 2016-06-08  3:24 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Am 2016-06-08 um 02:48 schrieb Wolfgang Schuster <schuster.wolfgang@gmail.com>:

>> Will the other table environments get this feature too?
> No, it’s a tabulate only feature.

Hm, our http://wiki.contextgarden.net/Tables_Overview mentions
TABLE’s split=yes
and linetable’s splitting.

I know at least the first works (even if not always like I’d expect).
I don’t know if linetables are working at all any more.

Greetlings, Hraban
---
http://www.fiee.net
http://wiki.contextgarden.net
https://www.cacert.org (I'm an assurer)
GPG Key ID 1C9B22FD

___________________________________________________________________________________
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] 6+ messages in thread

* Re: splitting table cells/rows
  2016-06-08  3:24       ` Henning Hraban Ramm
@ 2016-06-08  5:45         ` Erik Margraf
  0 siblings, 0 replies; 6+ messages in thread
From: Erik Margraf @ 2016-06-08  5:45 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 1633 bytes --]

As far as I experienced, it does split the table, but only at row borders.
Not within a row, as
the word example. Tabulate does this kind of splitting. For my usecase,
this was enough, though
the other table environments have some goodies which the tabulate
environment misses ...
(But maybe these features - e.g. combining cells - are the reason why the
splitting of cells doesn't
work ...)

regards
Erik

On Wed, Jun 8, 2016 at 5:24 AM, Henning Hraban Ramm <texml@fiee.net> wrote:

> Am 2016-06-08 um 02:48 schrieb Wolfgang Schuster <
> schuster.wolfgang@gmail.com>:
>
> >> Will the other table environments get this feature too?
> > No, it’s a tabulate only feature.
>
> Hm, our http://wiki.contextgarden.net/Tables_Overview mentions
> TABLE’s split=yes
> and linetable’s splitting.
>
> I know at least the first works (even if not always like I’d expect).
> I don’t know if linetables are working at all any more.
>
> Greetlings, Hraban
> ---
> http://www.fiee.net
> http://wiki.contextgarden.net
> https://www.cacert.org (I'm an assurer)
> GPG Key ID 1C9B22FD
>
>
> ___________________________________________________________________________________
> 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
>
> ___________________________________________________________________________________

[-- Attachment #1.2: Type: text/html, Size: 2858 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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] 6+ messages in thread

end of thread, other threads:[~2016-06-08  5:45 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-07  8:34 splitting table cells/rows Erik Margraf
2016-06-07  9:23 ` Wolfgang Schuster
2016-06-07 19:28   ` Erik Margraf
2016-06-07 20:48     ` Wolfgang Schuster
2016-06-08  3:24       ` Henning Hraban Ramm
2016-06-08  5:45         ` Erik Margraf

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).