ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Rotating two lines in a table
@ 2014-04-10 10:10 jaheinen
  2014-04-10 12:32 ` Wolfgang Schuster
  0 siblings, 1 reply; 7+ messages in thread
From: jaheinen @ 2014-04-10 10:10 UTC (permalink / raw)
  To: ntg-context


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

There is a bug(?) with

\starttext
\bTABLE
\bTR
\bTD[orientation=90]{first line\crlf second line}\eTD
\bTD{first line\crlf second line}\eTD
\eTR
\eTABLE
\stoptext

The second cell is partially written over the first cell.
How can I say: Don't do that :-) ?

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

* Re: Rotating two lines in a table
  2014-04-10 10:10 Rotating two lines in a table jaheinen
@ 2014-04-10 12:32 ` Wolfgang Schuster
  0 siblings, 0 replies; 7+ messages in thread
From: Wolfgang Schuster @ 2014-04-10 12:32 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 10.04.2014 um 12:10 schrieb jaheinen@gmx.de:

> There is a bug(?) with
> 
> \starttext
> \bTABLE
> \bTR
> \bTD[orientation=90]{first line\crlf second line}\eTD
> \bTD{first line\crlf second line}\eTD
> \eTR
> \eTABLE
> \stoptext
> 
> The second cell is partially written over the first cell.
> How can I say: Don't do that :-) ?___________________________________________________________________________________

Unrelated to your problem but why do you add braces around the text in the cells?

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

* Re: Rotating two lines in a table
  2014-04-07 21:50 Jan Heinen
  2014-04-07 22:17 ` Rik Kabel
@ 2014-04-08  9:59 ` Hans Hagen
  1 sibling, 0 replies; 7+ messages in thread
From: Hans Hagen @ 2014-04-08  9:59 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On 4/7/2014 11:50 PM, Jan Heinen wrote:
> I am searching since several days  now .... tomorow y need a solution :-(
>
> I want to rotate two lines with:
>
> \starttext
>     \bTABLE
>        \bTR
>            \bTD{\rotate[rotation=90]{first line\crlf second line}}\eTD
>        \eTR
>     \eTABLE
> \stoptext
>
>
> but instead of: (rotated 90°)
>     first line
>     second line
>
> I get:
>     first linesecond line

somehow a single cell doesn't work out well but i have no time not to 
look into that (one has to force the table builder into multiple passes)

\starttext
    \bTABLE
       \bTR
           \bTD[orientation=90]first line\crlf second line\eTD
       \eTR
       \bTR
           \bTD first line\crlf second line\eTD
       \eTR
    \eTABLE
    \blank
    \bTABLE
       \bTR
           \bTD first line\crlf second line\eTD
       \eTR
       \bTR
           \bTD[orientation=90]first line\crlf second line\eTD
       \eTR
    \eTABLE
    \blank
    \bTABLE
       \bTR
           \bTD[orientation=90]first line\crlf second line\eTD
       \eTR
    \eTABLE
\stoptext

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
     tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
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] 7+ messages in thread

* Rotating two lines in a table
@ 2014-04-07 22:44 Jan Heinen
  0 siblings, 0 replies; 7+ messages in thread
From: Jan Heinen @ 2014-04-07 22:44 UTC (permalink / raw)
  To: ntg-context


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

>>/  I am searching since several days  now .... tomorow y need a solution :-(
/>>/
/>>/  I want to rotate two lines with:
/>>/
/>>/  \starttext
/>>/     \bTABLE
/>>/        \bTR
/>>/            \bTD{\rotate[rotation=90]{first line\crlf second line}}\eTD
/>>/        \eTR
/>>/     \eTABLE
/>>/  \stoptext
/>>/
/>>/
/>>/  but instead of: (rotated 90°)
/>>/     first line
/>>/     second line
/>>/
/>>/  I get:
/>>/     first linesecond line
/>>/
/>>/
/>>/  Help. Please.
/>
>
>Perhaps using two cells (one per line) will work:
>
>         \bTABLE
  >           \bTR
>                \bTD[rightframe=off]{\rotate[rotation=90]{first line}}\eTD
>                \bTD[leftframe=off]{\rotate[rotation=90]{second line}}\eTD
>                \bTD{and some text in the next column}\eTD
>            \eTR
>        \eTABLE


Of course this solution works but it is unhandy for my needs.
I have lots of cells in the table with different amounts of 
lines.

Isn't there an easy way to rotate a cell which has has a 
text with several linebreaks?

I hope there is a ConTeXt-way ... otherwise I have to 
generate a graphic of the whole table with gimp ... I don't 
like this idea.



-- 


	

*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: 3837 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] 7+ messages in thread

* Re: Rotating two lines in a table
  2014-04-07 21:50 Jan Heinen
@ 2014-04-07 22:17 ` Rik Kabel
  2014-04-08  9:59 ` Hans Hagen
  1 sibling, 0 replies; 7+ messages in thread
From: Rik Kabel @ 2014-04-07 22:17 UTC (permalink / raw)
  To: ntg-context


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

On 2014-04-07 17:50, Jan Heinen wrote:
> I am searching since several days  now .... tomorow y need a solution :-(
>
> I want to rotate two lines with:
>
> \starttext
>    \bTABLE
>       \bTR
>           \bTD{\rotate[rotation=90]{first line\crlf second line}}\eTD
>       \eTR
>    \eTABLE
> \stoptext
>
>
> but instead of: (rotated 90°)
>    first line
>    second line
>
> I get:
>    first linesecond line
>
>
> Help. Please.


Perhaps using two cells (one per line) will work:

        \bTABLE
           \bTR
               \bTD[rightframe=off]{\rotate[rotation=90]{first line}}\eTD
               \bTD[leftframe=off]{\rotate[rotation=90]{second line}}\eTD
    \bTD{and some text in the next column}\eTD
           \eTR
        \eTABLE


-- 
Rik

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

* Rotating two lines in a table
@ 2014-04-07 21:50 Jan Heinen
  2014-04-07 22:17 ` Rik Kabel
  2014-04-08  9:59 ` Hans Hagen
  0 siblings, 2 replies; 7+ messages in thread
From: Jan Heinen @ 2014-04-07 21:50 UTC (permalink / raw)
  To: ntg-context


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

I am searching since several days  now .... tomorow y need a 
solution :-(

I want to rotate two lines with:

\starttext
    \bTABLE
       \bTR
           \bTD{\rotate[rotation=90]{first line\crlf second 
line}}\eTD
       \eTR
    \eTABLE
\stoptext


but instead of: (rotated 90°)
    first line
    second line

I get:
    first linesecond line


Help. Please.



-- 


	

*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: 2891 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] 7+ messages in thread

* Rotating two lines in a table
@ 2014-04-07 19:59 "Dr. Jörg Kopp"
  0 siblings, 0 replies; 7+ messages in thread
From: "Dr. Jörg Kopp" @ 2014-04-07 19:59 UTC (permalink / raw)
  To: ntg-context


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

I am searching since several days  now .... tomorow y need a 
solution :-(

I want to rotate two lines with:

\starttext
    \bTABLE
       \bTR
           \bTD{\rotate[rotation=90]{first line\crlf second 
line}}\eTD
       \eTR
    \eTABLE
\stoptext


but instead of: (rotated 90°)
    first line
    second line

I get:
    first linesecond line


Help. Please.



-- 


	

*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: 2873 bytes --]

[-- Attachment #1.2.2: Grafik1 --]
[-- Type: image/jpeg, Size: 18938 bytes --]

[-- Attachment #2: JK.vcf --]
[-- Type: text/x-vcard, Size: 736 bytes --]

begin:vcard
fn;quoted-printable:Dr. J=C3=B6rg Kopp
n;quoted-printable:Kopp;Dr. J=C3=B6rg
org;quoted-printable:Dr. J=C3=B6rg Kopp Training + Coaching
adr;quoted-printable:;;Am P=C3=BCtzberg 2;Wiehl;NRW;51674;Deutschland
email;internet:JK@Dr-Kopp.com
tel;work:02262/751086
tel;cell:0171/4702812
note;quoted-printable:Training + Coaching f=C3=BCr F=C3=BChrungskr=C3=A4fte und Teams=0D=0A=
	=0D=0A=
	Coaching:=0D=0A=
	=3D=3D=3D=3D=3D=3D=0D=0A=
	- Einzelcoaching=0D=0A=
	- Gruppencoaching=0D=0A=
	=0D=0A=
	Training:=0D=0A=
	=3D=3D=3D=3D=3D=0D=0A=
	- Konfliktmoderation=0D=0A=
	- Kreativit=C3=A4tstechniken=0D=0A=
	- Teamentwicklung=0D=0A=
	- Mitarbeiterf=C3=BChrung
url:http://www.Dr-Kopp.com
version:2.1
end:vcard


[-- Attachment #3: 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] 7+ messages in thread

end of thread, other threads:[~2014-04-10 12:32 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-10 10:10 Rotating two lines in a table jaheinen
2014-04-10 12:32 ` Wolfgang Schuster
  -- strict thread matches above, loose matches on Subject: below --
2014-04-07 22:44 Jan Heinen
2014-04-07 21:50 Jan Heinen
2014-04-07 22:17 ` Rik Kabel
2014-04-08  9:59 ` Hans Hagen
2014-04-07 19:59 "Dr. Jörg Kopp"

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