Am 15.04.2013 19:03, schrieb ntg-context-request@ntg.nl:
Define a float type `rightfigure` that inherits from `figure`; then setup that float's caption with \setupcaption[rightfigure][...=...]. Like so:
\definefloat[rightfigure][rightfigure][figure] \setupcaption[rightfigure][location=right]
\starttext \placefigure{caption 1}{\framed{figure 1}} \placerightfigure{caption 2}{\framed{figure 2}} \placefigure{caption 3}{\framed{figure 3}} \stoptext Thanks, that works!
So I use now: \definefloat[rightfigure][rightfigure][figure] \setupcaption[rightfigure][location=right] \startplacerightfigure[ title={Tolles Bild}, reference=fig:demo, number=no] {\framed{figure}} \stopplacerightfigure How can I now tell, where to place the figure? There are keys like "here", or "force", or "bottom" and so on, how to use them in this configuration? (my tries failed so far) Huseyin