On 26 Jun 2009, at 10:05, Wolfgang Schuster wrote:
And while I'm at it, if I want a heading in the left margin as well, but I want it 90 degrees rotated, how do I do that?
\setuplayout [leftmargin=1cm, leftmargindistance=5mm]
\startsetups header:margin
\framed [frame=off, orientation=90, width=\leftmarginwidth, height=\textheight, align={middle,middle}] {My document\hfil\pagenumber\hfil My name}
\stopsetups
\defineoverlay[header:margin][\setups{header:margin}]
\setupbackgrounds[text][leftmargin][background={header:margin}]
\starttext
...
\stoptext
Thanks. Almost there. I now have: \definetyping[SQL][option=color,numbering=line,bodyfont=9pt] \defineoverlay[ifsqoverlay][\overlayfigure{IfSQ-overlay.pdf}] \setuppapersize[A4,landscape][a4,landscape] \setupbackgrounds[page][background=ifsqoverlay] \setuptyping[SQL][palet=colorpretty] \def\typeSQLfile{\typefile[SQL]} \setuplayout [leftmargin=1cm, leftmargindistance=5mm, footer=0mm, header=0mm, rightmargin=0mm] \startsetups header:margin \framed [frame=off, orientation=90, width=2\leftmarginwidth, height=\textheight, align={top,middle}] {My document\hfil\pagenumber\hfil My name} \stopsetups \defineoverlay[header:margin][\setups{header:margin}] \setupbackgrounds[text][leftmargin][background={header:margin}] \starttext \typeSQLfile{Library-procedures/details.pls} %\typeSQLfile{Library-procedures/aanroep_kgcpros20.pls} %\typeSQLfile{Library-procedures/details.pls} %\typeSQLfile{Library-procedures/helix_print.pls} %\typeSQLfile{Library-procedures/hlx$requery.pls} %\typeSQLfile{Library-procedures/kgc$adm_meerling.pls} %\typeSQLfile{Library-procedures/kgc$bereken.pls} %\typeSQLfile{Library-procedures/kgc$datum.pls} %\typeSQLfile{Library-procedures/kgc$item.pls} %\typeSQLfile{Library-procedures/kgc$tab.pls} %\typeSQLfile{Library-procedures/kgc$toon.pls} %\typeSQLfile{Library-procedures/print_uitslagbrief.pls} %\typeSQLfile{Library-procedures/qms$record.pls} %\typeSQLfile{Library-procedures/voeruit_idef.pls} %\typeSQLfile{Library-procedures/vul_onwy_list.pls} %\typeSQLfile{Library-procedures/zoek_item.pls} \stoptext I do now have a rotated 'header' on the left side. And thanks to the larger width and the top aligment, the rotated 'heading' does not conflict with the line numbers. But ... the page number is '1' on every page And the I'd like to change the definition of the \typeSQLfile command such that it changes the document name in the rotated header too. G