ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* over normal width tables
@ 2003-05-15 19:39 Helmut Schwertner
  2003-05-16  9:53 ` Hans Hagen
  2003-05-16 13:33 ` Henning Hraban Ramm
  0 siblings, 2 replies; 8+ messages in thread
From: Helmut Schwertner @ 2003-05-15 19:39 UTC (permalink / raw)


Hello,

sometimes I need over normal width tables. Is there any equivalent to
"\sidewaystable" from LaTeX?

If there is no way like "\sidewaystable" could somebody recommend an other
solution to place width table?

Thanks for every tip,

kind regards,

Helmut

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

* Re: over normal width tables
  2003-05-15 19:39 over normal width tables Helmut Schwertner
@ 2003-05-16  9:53 ` Hans Hagen
  2003-05-16 10:34   ` Re[2]: " Giuseppe Bilotta
  2003-05-16 13:33 ` Henning Hraban Ramm
  1 sibling, 1 reply; 8+ messages in thread
From: Hans Hagen @ 2003-05-16  9:53 UTC (permalink / raw)


At 21:39 15/05/2003 +0200, you wrote:
>Hello,
>
>sometimes I need over normal width tables. Is there any equivalent to
>"\sidewaystable" from LaTeX?

what exactly is a sideways table ?

Hans

-------------------------------------------------------------------------
                                   Hans Hagen | PRAGMA ADE | pragma@wxs.nl
                       Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
  tel: +31 (0)38 477 53 69 | fax: +31 (0)38 477 53 74 | www.pragma-ade.com
-------------------------------------------------------------------------
                        information: http://www.pragma-ade.com/roadmap.pdf
                     documentation: http://www.pragma-ade.com/showcase.pdf
-------------------------------------------------------------------------

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

* Re[2]: over normal width tables
  2003-05-16  9:53 ` Hans Hagen
@ 2003-05-16 10:34   ` Giuseppe Bilotta
  2003-05-16 19:23     ` Willi Egger
  0 siblings, 1 reply; 8+ messages in thread
From: Giuseppe Bilotta @ 2003-05-16 10:34 UTC (permalink / raw)


Friday, May 16, 2003 Hans Hagen wrote:

HH> At 21:39 15/05/2003 +0200, you wrote:
>>Hello,
>>
>>sometimes I need over normal width tables. Is there any equivalent to
>>"\sidewaystable" from LaTeX?

HH> what exactly is a sideways table ?

A table rotated by 90 degrees. (That is, printed landscape
instead of portrait.)

-- 
Giuseppe "Oblomov" Bilotta

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

* Re: over normal width tables
  2003-05-15 19:39 over normal width tables Helmut Schwertner
  2003-05-16  9:53 ` Hans Hagen
@ 2003-05-16 13:33 ` Henning Hraban Ramm
  1 sibling, 0 replies; 8+ messages in thread
From: Henning Hraban Ramm @ 2003-05-16 13:33 UTC (permalink / raw)



Am Donnerstag, 15.05.03, um 21:39 Uhr (Europe/Zurich) schrieb Helmut 
Schwertner:

> sometimes I need over normal width tables. Is there any equivalent to
> "\sidewaystable" from LaTeX?

You can rotate everything with e.g. \rotate[90]{\placetable}

Grüßlis vom Hraban!
-- 
http://www.fiee.net/texnique/

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

* Re: Re[2]: over normal width tables
  2003-05-16 10:34   ` Re[2]: " Giuseppe Bilotta
@ 2003-05-16 19:23     ` Willi Egger
  2003-05-17 15:38       ` Hans Hagen
  0 siblings, 1 reply; 8+ messages in thread
From: Willi Egger @ 2003-05-16 19:23 UTC (permalink / raw)



> HH> At 21:39 15/05/2003 +0200, you wrote:
> >>Hello,
> >>
> >>sometimes I need over normal width tables. Is there any equivalent to
> >>"\sidewaystable" from LaTeX?
> 
> HH> what exactly is a sideways table ?
> 
>GB> A table rotated by 90 degrees. (That is, printed landscape
> GB>instead of portrait.)

You can always use \setuppapersize

\setuppapersize[A4,portrait][A4,portrait]

running text

\page
\setuppapersize[A4,landscape][A4,landscape]

The sideways table

\page
\setuppapersize[A4,portrait][A4,portrait]

running text again.


Willi

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

* Re: Re[2]: over normal width tables
  2003-05-16 19:23     ` Willi Egger
@ 2003-05-17 15:38       ` Hans Hagen
  2003-05-17 23:29         ` Re[4]: " Giuseppe Bilotta
  0 siblings, 1 reply; 8+ messages in thread
From: Hans Hagen @ 2003-05-17 15:38 UTC (permalink / raw)


At 21:23 16/05/2003 +0200, you wrote:

> > HH> At 21:39 15/05/2003 +0200, you wrote:
> > >>Hello,
> > >>
> > >>sometimes I need over normal width tables. Is there any equivalent to
> > >>"\sidewaystable" from LaTeX?
> >
> > HH> what exactly is a sideways table ?
> >
> >GB> A table rotated by 90 degrees. (That is, printed landscape
> > GB>instead of portrait.)
>
>You can always use \setuppapersize
>
>\setuppapersize[A4,portrait][A4,portrait]
>
>running text
>
>\page
>\setuppapersize[A4,landscape][A4,landscape]
>
>The sideways table
>
>\page
>\setuppapersize[A4,portrait][A4,portrait]
>
>running text again.

or (latest versions):

\startbuffer
   ... the table ...
\stopbuffer

\placetable[90]{}{\getbuffer}

Hans
-------------------------------------------------------------------------
                                   Hans Hagen | PRAGMA ADE | pragma@wxs.nl
                       Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
  tel: +31 (0)38 477 53 69 | fax: +31 (0)38 477 53 74 | www.pragma-ade.com
-------------------------------------------------------------------------
                        information: http://www.pragma-ade.com/roadmap.pdf
                     documentation: http://www.pragma-ade.com/showcase.pdf
-------------------------------------------------------------------------

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

* Re[4]: over normal width tables
  2003-05-17 15:38       ` Hans Hagen
@ 2003-05-17 23:29         ` Giuseppe Bilotta
  2003-05-18 18:02           ` Hans Hagen
  0 siblings, 1 reply; 8+ messages in thread
From: Giuseppe Bilotta @ 2003-05-17 23:29 UTC (permalink / raw)


Saturday, May 17, 2003 Hans Hagen wrote:


HH> or (latest versions):

HH> \startbuffer
HH>    ... the table ...
HH> \stopbuffer

HH> \placetable[90]{}{\getbuffer}

Do you add features overnight? :)

-- 
Giuseppe "Oblomov" Bilotta

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

* Re[4]: over normal width tables
  2003-05-17 23:29         ` Re[4]: " Giuseppe Bilotta
@ 2003-05-18 18:02           ` Hans Hagen
  0 siblings, 0 replies; 8+ messages in thread
From: Hans Hagen @ 2003-05-18 18:02 UTC (permalink / raw)


At 01:29 18/05/2003 +0200, you wrote:
>Saturday, May 17, 2003 Hans Hagen wrote:
>
>
>HH> or (latest versions):
>
>HH> \startbuffer
>HH>    ... the table ...
>HH> \stopbuffer
>
>HH> \placetable[90]{}{\getbuffer}
>
>Do you add features overnight? :)

no, this was added some time ago, actually a solution to a previously 
posted question, and as it happens i was working on floats that time (many 
more keywords added); want some more feattures ?

Hans


-------------------------------------------------------------------------
                                   Hans Hagen | PRAGMA ADE | pragma@wxs.nl
                       Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
  tel: +31 (0)38 477 53 69 | fax: +31 (0)38 477 53 74 | www.pragma-ade.com
-------------------------------------------------------------------------
                        information: http://www.pragma-ade.com/roadmap.pdf
                     documentation: http://www.pragma-ade.com/showcase.pdf
-------------------------------------------------------------------------

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

end of thread, other threads:[~2003-05-18 18:02 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-05-15 19:39 over normal width tables Helmut Schwertner
2003-05-16  9:53 ` Hans Hagen
2003-05-16 10:34   ` Re[2]: " Giuseppe Bilotta
2003-05-16 19:23     ` Willi Egger
2003-05-17 15:38       ` Hans Hagen
2003-05-17 23:29         ` Re[4]: " Giuseppe Bilotta
2003-05-18 18:02           ` Hans Hagen
2003-05-16 13:33 ` Henning Hraban Ramm

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