On Thu, 22 Nov 2007 22:02:24 +0100
Peter Schorsch
\placefigure [force][fig:xy] {captiontext} {\placelegend {\startcombination[2*1] {\externalfigure[xxx]}{} {\externalfigure[yyy]}{} \stopcombination} {Quelle: XY}}
Thanks, both solutions work. Is there something simelar for placelegend in splitfloat?
\splitfloat {\placetable[][]{tablecaptiontext}} {very very long HTML-Table}
I need to add a legend - also as a HTML-Table, so I tried:
\splitfloat {\placetable[][]{tablecaptiontext}} {\placelegend {very very long HTML-Table} {legend HTML-Table}}
But this is not working - strangly an Missing-} error comes up.... but all brakets are closed. Is there any other way to put a legend at the end of a multi-page HTML-Table?
Ciao, P.
You don't need \splitfloat because you can use the "split" parameter for \placetable. \placelegend can not be used for content that has to split after pages but you my the following trick for tables. \starttext \placetable [split] {Table Caption} {\bTABLE \bTABLEbody \dorecurse{50}{\bTR\bTD Text text text \eTD\bTD Text text text \eTD \eTR} \eTABLEbody \bTABLEfoot \bTR\bTD[frame=off,nx=2,align=middle] Taken from book xx \eTD\eTR \eTABLEfoot \eTABLE} \stoptext Wolfgang