On Thu, 31 May 2007 16:58:11 +0200
Henning Hraban Ramm
This was asked, but not answered before...
[long text deleted] Hi Hraban, I investigated time in your problem and found a better (with lots of things to be done) solution. \input rotatesplit \startsetups caption:rotatedcaption \setupcaptions [location={middle,left}, command={\rotate[rotation=-90]}, width=max, align=middle] \stopsetups \startsetups caption:normalcaption \setupcaptions [location=bottom, command=, width=fit, align=] \stopsetups \def\rotatedcaption {\ifnum\floatrotation=90 \setups{caption:rotatedcaption} \else\ifnum\floatrotation=270 \setups{caption:rotatedcaption} \else \setups{caption:normalcaption} \fi\fi} %\setupfloats[before=\rotatedcaption] \showframe \starttext \dorecurse{10}{\input knuth\relax} \chardef\floatrotation=90 \rotatedcaption \placetable [90,split] [tab:religionen] {Götter} {\bTABLE[width=5cm] \dorecurse{100}{\bTR\bTD Text\eTD\eTR} \eTABLE} \chardef\floatrotation=0 \rotatedcaption \placetable [split] [tab:religionen] {Götter} {\bTABLE[width=5cm] \dorecurse{100}{\bTR\bTD Text\eTD\eTR} \eTABLE} \dorecurse{10}{\input knuth\relax} \stoptext Wolfgang