ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* setuptabulate
@ 2006-01-18 11:32 Hans van der Meer
  2006-01-18 21:14 ` setuptabulate Henning Hraban Ramm
  2006-01-19 13:24 ` setuptabulate Hans Hagen
  0 siblings, 2 replies; 7+ messages in thread
From: Hans van der Meer @ 2006-01-18 11:32 UTC (permalink / raw)


What is with tabulation? I use it because I find it handy, but the  
setuptabulate seems not working.

\starttext
\setuptabulate[align=middle,rulethickness=1pt]
\starttabulate[|c|c|]
	\NC abc \NC xyz \NC\NR
	\NC def \NC uvw \NC\NR
\stoptabulate
\stoptext

This gives NO alignment and NO rule. Is something wrong?
Ran at the wiki live-ConTeXt and got the same negative result.

yours sincerely,
dr. H. van der Meer

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

* Re: setuptabulate
  2006-01-18 11:32 setuptabulate Hans van der Meer
@ 2006-01-18 21:14 ` Henning Hraban Ramm
  2006-01-19 10:53   ` setuptabulate Hans van der Meer
  2006-01-19 13:24 ` setuptabulate Hans Hagen
  1 sibling, 1 reply; 7+ messages in thread
From: Henning Hraban Ramm @ 2006-01-18 21:14 UTC (permalink / raw)


Am 2006-01-18 um 12:32 schrieb Hans van der Meer:

> What is with tabulation? I use it because I find it handy, but the  
> setuptabulate seems not working.
>
> This gives NO alignment and NO rule. Is something wrong?

I'm surprised that tabulates should have align and rule at all, but  
texshow states so.
Why don't you use some sort of table?

Grüßlis vom Hraban!
---
http://www.fiee.net/texnique/
http://contextgarden.net
http://www.cacert.org (I'm an assurer)

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

* Re: setuptabulate
  2006-01-18 21:14 ` setuptabulate Henning Hraban Ramm
@ 2006-01-19 10:53   ` Hans van der Meer
  2006-01-19 13:33     ` setuptabulate Henning Hraban Ramm
  0 siblings, 1 reply; 7+ messages in thread
From: Hans van der Meer @ 2006-01-19 10:53 UTC (permalink / raw)





On Jan 18, 2006, at 22:14, Henning Hraban Ramm wrote:

> Am 2006-01-18 um 12:32 schrieb Hans van der Meer:
>
>> What is with tabulation? I use it because I find it handy, but the  
>> setuptabulate seems not working.
>>
>> This gives NO alignment and NO rule. Is something wrong?
>
> I'm surprised that tabulates should have align and rule at all, but  
> texshow states so.
> Why don't you use some sort of table?

The answer is simple: because I like the tabulation construct.


yours sincerely,
dr. H. van der Meer

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

* Re: setuptabulate
  2006-01-18 11:32 setuptabulate Hans van der Meer
  2006-01-18 21:14 ` setuptabulate Henning Hraban Ramm
@ 2006-01-19 13:24 ` Hans Hagen
  2006-01-19 16:05   ` setuptabulate Hans van der Meer
  1 sibling, 1 reply; 7+ messages in thread
From: Hans Hagen @ 2006-01-19 13:24 UTC (permalink / raw)


Hans van der Meer wrote:

> What is with tabulation? I use it because I find it handy, but the  
> setuptabulate seems not working.
>
> \starttext
> \setuptabulate[align=middle,rulethickness=1pt]
> \starttabulate[|c|c|]
>     \NC abc \NC xyz \NC\NR
>     \NC def \NC uvw \NC\NR
> \stoptabulate
> \stoptext
>
> This gives NO alignment and NO rule. Is something wrong?
> Ran at the wiki live-ConTeXt and got the same negative result.

this kind of alignments only influences the p entries

\starttext

\setuptabulate[align=left]

\starttabulate
\NC test \NC \input tufte \NC \NR
\stoptabulate

\setuptabulate[align=right]

\starttabulate
\NC test \NC \input tufte \NC \NR
\stoptabulate

\stoptext


-----------------------------------------------------------------
                                          Hans Hagen | PRAGMA ADE
              Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
     tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
                                             | www.pragma-pod.nl
-----------------------------------------------------------------

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

* Re: setuptabulate
  2006-01-19 10:53   ` setuptabulate Hans van der Meer
@ 2006-01-19 13:33     ` Henning Hraban Ramm
  2006-01-19 13:50       ` setuptabulate Taco Hoekwater
  0 siblings, 1 reply; 7+ messages in thread
From: Henning Hraban Ramm @ 2006-01-19 13:33 UTC (permalink / raw)


Am 2006-01-19 um 11:53 schrieb Hans van der Meer:

>>> What is with tabulation? I use it because I find it handy, but  
>>> the setuptabulate seems not working.
>>> This gives NO alignment and NO rule. Is something wrong?
>> I'm surprised that tabulates should have align and rule at all,  
>> but texshow states so.
>> Why don't you use some sort of table?
> The answer is simple: because I like the tabulation construct.

If you need rules, you must use some kind of table. It's no big change:

\setuptables[rulethickness=1pt]
\starttable[|c|c|]
	\NC abc \VL xyz \NC\AR
	\NC def \VL uvw \NC\AR
\stoptable

And you must use \VL for a vertical line instead of \NC

Greetlings from Lake Constance!
Hraban
---
http://www.fiee.net/texnique/
http://contextgarden.net
http://www.cacert.org (I'm an assurer)

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

* Re: setuptabulate
  2006-01-19 13:33     ` setuptabulate Henning Hraban Ramm
@ 2006-01-19 13:50       ` Taco Hoekwater
  0 siblings, 0 replies; 7+ messages in thread
From: Taco Hoekwater @ 2006-01-19 13:50 UTC (permalink / raw)




Henning Hraban Ramm wrote:
> Am 2006-01-19 um 11:53 schrieb Hans van der Meer:
> 
>>>> What is with tabulation? I use it because I find it handy, but  the 
>>>> setuptabulate seems not working.
>>>> This gives NO alignment and NO rule. Is something wrong?
>>>
>>> I'm surprised that tabulates should have align and rule at all,  but 
>>> texshow states so.
>>> Why don't you use some sort of table?
>>
>> The answer is simple: because I like the tabulation construct.
> 
> 
> If you need rules, you must use some kind of table. It's no big change:
> 
> \setuptables[rulethickness=1pt]
> \starttable[|c|c|]
>     \NC abc \VL xyz \NC\AR
>     \NC def \VL uvw \NC\AR
> \stoptable
> 
> And you must use \VL for a vertical line instead of \NC

To put this another way, the | symbol only separates the column
templates, it does not imply a vertical line.

Cheers, Taco

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

* Re: setuptabulate
  2006-01-19 13:24 ` setuptabulate Hans Hagen
@ 2006-01-19 16:05   ` Hans van der Meer
  0 siblings, 0 replies; 7+ messages in thread
From: Hans van der Meer @ 2006-01-19 16:05 UTC (permalink / raw)


Thanks. I did not realize that the alignment had to do with the  
paragraphs inside the columns.
Centering of a tabulation I now realize with:

\starttext
\midaligned{\vbox{\starttabulate[|c|c|]
	\NC a \NC bcd \NC\NR
	\NC xy \NC finally \NC\NR
\stoptabulate}}
\stoptext

yours sincerely,
dr. H. van der Meer



On Jan 19, 2006, at 14:24, Hans Hagen wrote:

> Hans van der Meer wrote:
>
>> What is with tabulation? I use it because I find it handy, but  
>> the  setuptabulate seems not working.
>>
>> \starttext
>> \setuptabulate[align=middle,rulethickness=1pt]
>> \starttabulate[|c|c|]
>>     \NC abc \NC xyz \NC\NR
>>     \NC def \NC uvw \NC\NR
>> \stoptabulate
>> \stoptext
>>
>> This gives NO alignment and NO rule. Is something wrong?
>> Ran at the wiki live-ConTeXt and got the same negative result.
>
> this kind of alignments only influences the p entries
>
> \starttext
>
> \setuptabulate[align=left]
>
> \starttabulate
> \NC test \NC \input tufte \NC \NR
> \stoptabulate
>
> \setuptabulate[align=right]
>
> \starttabulate
> \NC test \NC \input tufte \NC \NR
> \stoptabulate
>
> \stoptext
>
>
> -----------------------------------------------------------------
>                                          Hans Hagen | PRAGMA ADE
>              Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
>     tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
>                                             | www.pragma-pod.nl
> -----------------------------------------------------------------
>
> _______________________________________________
> ntg-context mailing list
> ntg-context@ntg.nl
> http://www.ntg.nl/mailman/listinfo/ntg-context

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

end of thread, other threads:[~2006-01-19 16:05 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-01-18 11:32 setuptabulate Hans van der Meer
2006-01-18 21:14 ` setuptabulate Henning Hraban Ramm
2006-01-19 10:53   ` setuptabulate Hans van der Meer
2006-01-19 13:33     ` setuptabulate Henning Hraban Ramm
2006-01-19 13:50       ` setuptabulate Taco Hoekwater
2006-01-19 13:24 ` setuptabulate Hans Hagen
2006-01-19 16:05   ` setuptabulate Hans van der Meer

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