ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Cellspacing like in HTML-Tables?
@ 2014-04-09 16:34 jaheinen
  2014-04-09 17:05 ` Aditya Mahajan
  0 siblings, 1 reply; 4+ messages in thread
From: jaheinen @ 2014-04-09 16:34 UTC (permalink / raw)
  To: ntg-context


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

Thanx Wolfgang, that was new to me.

But what I need is spacing betwern the cells ... every cell has its own frame with spacing between the frames.

Janis

[-- Attachment #1.2: Type: text/html, Size: 174 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] 4+ messages in thread

* Re: Cellspacing like in HTML-Tables?
  2014-04-09 16:34 Cellspacing like in HTML-Tables? jaheinen
@ 2014-04-09 17:05 ` Aditya Mahajan
  0 siblings, 0 replies; 4+ messages in thread
From: Aditya Mahajan @ 2014-04-09 17:05 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Wed, 9 Apr 2014, jaheinen@gmx.de wrote:

> Thanx Wolfgang, that was new to me.
>
> But what I need is spacing betwern the cells ... every cell has its own frame with spacing between the frames.

You mean something like this?

\startsetups cellpading
   \setupTABLE[offset=10pt, frameoffset=-3pt]
\stopsetups

\starttext

\startTABLE[setups=cellpading]
   \NC A \NC B \NC D \NC \NR
   \NC A \NC B \NC D \NC \NR
   \NC A \NC B \NC D \NC \NR
\stopTABLE
\stoptext

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

* Re: Cellspacing like in HTML-Tables?
  2014-04-07 21:49 Jan Heinen
@ 2014-04-08  3:22 ` Wolfgang Schuster
  0 siblings, 0 replies; 4+ messages in thread
From: Wolfgang Schuster @ 2014-04-08  3:22 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 07.04.2014 um 23:49 schrieb Jan Heinen <JaHeinen@gmx.de>:

> Do you know cellspacing for HTML-Tables?
> How to do something simmilar for TABLE in ConTeXt?
> 
> \starttext
>    \bTABLE
>       \bTR
>           \bTD{Text 1}\eTD
>           \bTD{Text 2}\eTD
>       \eTR
>    \eTABLE
> \stoptext


\starttext

\bTABLE
  \bTR[offset=1cm]
    \bTD A \eTD
    \bTD B \eTD
  \eTR
\eTABLE

\bTABLE
  \bTR
    \bTD[loffset=1cm] A \eTD
    \bTD[toffset=1cm] B \eTD
    \bTD[roffset=1cm] C \eTD
    \bTD[boffset=1cm] D \eTD
  \eTR
\eTABLE

\bTABLE
  \bTR
    \bTD[width=1cm] A \eTD
    \bTD[height=1cm] B \eTD
  \eTR
\eTABLE

\stoptext

Wolfgang

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

* Cellspacing like in HTML-Tables?
@ 2014-04-07 21:49 Jan Heinen
  2014-04-08  3:22 ` Wolfgang Schuster
  0 siblings, 1 reply; 4+ messages in thread
From: Jan Heinen @ 2014-04-07 21:49 UTC (permalink / raw)
  To: ntg-context


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

Do you know cellspacing for HTML-Tables?
How to do something simmilar for TABLE in ConTeXt?

\starttext
    \bTABLE
       \bTR
           \bTD{Text 1}\eTD
           \bTD{Text 2}\eTD
       \eTR
    \eTABLE
\stoptext



-- 


	

*Dr. Jörg Kopp*


Am Pützberg 2
51674 Wiehl


Tel.: 02262/751086
eMail: info@dr-kopp.com <mailto:info@dr-kopp.com>
Internet: www.dr-kopp.com





[-- Attachment #1.2.1: Type: text/html, Size: 2638 bytes --]

[-- Attachment #1.2.2: Grafik1 --]
[-- Type: image/jpeg, Size: 18938 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] 4+ messages in thread

end of thread, other threads:[~2014-04-09 17:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-09 16:34 Cellspacing like in HTML-Tables? jaheinen
2014-04-09 17:05 ` Aditya Mahajan
  -- strict thread matches above, loose matches on Subject: below --
2014-04-07 21:49 Jan Heinen
2014-04-08  3:22 ` Wolfgang Schuster

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