Wolfgang Schuster schrieb am 13.08.2020 um 20:47:
Pablo Rodriguez schrieb am 13.08.2020 um 20:30:
On 8/13/20 6:06 PM, Wolfgang Schuster wrote:
[...] What am I doing wrong here? (To avoid an error, I get other errors.)
There are not enough information to help you.
I discovered what was wrong: I had an xtable on the footer to set the page numbering.
So I replaced it with the following tabulation:
\starttabulate [|lw(.22\textwidth)| cw(.24\textwidth)| cw(.08\textwidth)| cw(.24\textwidth)| rw(.22\textwidth)|] [unit=0pt] \NC\pinter\NC\latint\NC\pcentr\NC\latext\NC\pexter\NC\NR \stoptabulate
You can use nested frames:
\startsetups[...] \startframed[offset=overlay,frame=off] \framed[width=.22\textiwdth]{\pinter} \framed[width=.24\textiwdth]{\latint} \framed[width=.08\textiwdth]{\pcentr} \framed[width=.24\textiwdth]{\latext} \framed[width=.22\textiwdth]{\pexter} \stopframed \stopsetups
To get the correct width with column change \textwidth to \makeupwidth or just use \hsize which is the width of the footer. \startsetups[...] \startframed[offset=overlay,frame=off] \framed[width=.22\hsize]{...} \framed[width=.24\hsize]{...} \framed[width=.08\hsize]{...} \framed[width=.24\hsize]{...} \framed[width=.22\hsize]{...} \stopframed \stopsetups Wolfgang