ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* some basic TABLE questions
@ 2006-04-27 14:21 Karsten Heymann
  2006-04-27 20:34 ` Willi Egger
  0 siblings, 1 reply; 3+ messages in thread
From: Karsten Heymann @ 2006-04-27 14:21 UTC (permalink / raw)



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

Hello,

it would be very kind if someone could answer the following questions
about the possibilities of TABLE:

- there some semi-automatic way of splitting tables on multiple pages if
  those tables are in landscape mode (which I achieve by putting them
  into a \rotating{}-Command)?
- How do I add a caption to (portrait) multipage TABLEs? \placefigure
  obviously doesn't work.

Any help would be very much appreciated!

Yours,
Karsten
-- 
|  ~ Karsten Heymann ~  | Christian-Albrecht-Universität zu Kiel |
| Fon: +49 431 880-1186 |    Netzwerkteam des Ökologiezentrum    |
| Fax: +49 431 880-4083 |     http://www.ecology.uni-kiel.de     |
| ----- Selbständiger EDV-Dienstleister im Auftrag des ÖZK ----- |




[-- Attachment #1.2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 254 bytes --]

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

_______________________________________________
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context

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

* Re: some basic TABLE questions
  2006-04-27 14:21 some basic TABLE questions Karsten Heymann
@ 2006-04-27 20:34 ` Willi Egger
  2006-05-03 11:25   ` Karsten Heymann
  0 siblings, 1 reply; 3+ messages in thread
From: Willi Egger @ 2006-04-27 20:34 UTC (permalink / raw)


Hi Karsten,

I hope to be able to give at least partial answers

Instead of using a \framed construct I would suggest to use a background:
    
\setupbackgrounds[text][state=repeat,background=screen,backgroundscreen=.8]

bTABLE breaks over pages if you use [split=repeat] together with a\ 
bTABLEhead...\eTABLEhead.
Using the \rotate command prevents breaking, Possibly you better use
    \setuppapersize[a4,landscape][a4,landscape], which of course rotates 
the whole layout including headers and footers.
I am afraid, that once you include the table into a \placefigure 
environment, breaking is prevented.
I was able to break a long table with a merged cell as you have it in 
the first column. However there is possibly a bug, because this column 
has no "bottomframe".
In order to place the "LOW TECH" text correctly you might use a \framed 
command within the table
        \bTD[nr=7,align=lohi] \rotate[rotation=90]{\framed[frame=off, 
offset=.5em,align=center,width=3cm]{Low Tech}}\eTD

AFAIK \placetable or \placefigure accepts a single caption only and will 
not break over pages.

Kind regards
Willi

Karsten Heymann wrote:

>Hello,
>
>it would be very kind if someone could answer the following questions
>about the possibilities of TABLE:
>
>- there some semi-automatic way of splitting tables on multiple pages if
>  those tables are in landscape mode (which I achieve by putting them
>  into a \rotating{}-Command)?
>- How do I add a caption to (portrait) multipage TABLEs? \placefigure
>  obviously doesn't work.
>
>Any help would be very much appreciated!
>
>Yours,
>Karsten
>  
>
>------------------------------------------------------------------------
>
>_______________________________________________
>ntg-context mailing list
>ntg-context@ntg.nl
>http://www.ntg.nl/mailman/listinfo/ntg-context
>  
>

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

* Re: some basic TABLE questions
  2006-04-27 20:34 ` Willi Egger
@ 2006-05-03 11:25   ` Karsten Heymann
  0 siblings, 0 replies; 3+ messages in thread
From: Karsten Heymann @ 2006-05-03 11:25 UTC (permalink / raw)



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

Hi Willi,

sorry for the late reply, was a bit ill

Willi Egger wrote:
> \setupbackgrounds[text][state=repeat,background=screen,backgroundscreen=.8]

I'll try that, but the frame coloring is just for debugging. My
intention was to control the exact aligning of the table on the page.

> bTABLE breaks over pages if you use [split=repeat] together with a\ 
> bTABLEhead...\eTABLEhead.

> Using the \rotate command prevents breaking, Possibly you better use
>     \setuppapersize[a4,landscape][a4,landscape], which of course rotates 
> the whole layout including headers and footers.

I didn't think of that, I'll try it out.

> I am afraid, that once you include the table into a \placefigure 
> environment, breaking is prevented.

Is there a way to add a caption without \placetable then?

> I was able to break a long table with a merged cell as you have it in 
> the first column. However there is possibly a bug, because this column 
> has no "bottomframe".
> In order to place the "LOW TECH" text correctly you might use a \framed 
> command within the table
>         \bTD[nr=7,align=lohi] \rotate[rotation=90]{\framed[frame=off, 
> offset=.5em,align=center,width=3cm]{Low Tech}}\eTD

I'll try that too.

Thanks alot,
Karsten
-- 
|  ~ Karsten Heymann ~  | Christian-Albrecht-Universität zu Kiel |
| Fon: +49 431 880-1186 |    Netzwerkteam des Ökologiezentrum    |
| Fax: +49 431 880-4083 |     http://www.ecology.uni-kiel.de     |
| ----- Selbständiger EDV-Dienstleister im Auftrag des ÖZK ----- |



[-- Attachment #1.2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 254 bytes --]

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

_______________________________________________
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context

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

end of thread, other threads:[~2006-05-03 11:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-04-27 14:21 some basic TABLE questions Karsten Heymann
2006-04-27 20:34 ` Willi Egger
2006-05-03 11:25   ` Karsten Heymann

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