Eugene Toporov wrote:
1. Framed text width is calculated not as I expect. The sample below makes framedtext box appear partially on right margin
\setupcolors[state=start] \setuplayout[width=9cm] \showframe \starttext \startitemize[n,packed] \item A normal item paragraph, which normaly gets wrapped ok.\par
\startframedtext[background=screen,frame=off,width=\textwidth] Some listing as framedtext whose width seems calculated incorrectly. \stopframedtext \stopitemize \stoptext
In LaTeX you have a \linewidth command (compare the difference with \textwidth, which doesn't change): \documentclass{article} \begin{document} linewidth: \the\linewidth, textwidth: \the\textwidth \begin{itemize} \item linewidth: \the\linewidth, textwidth: \the\textwidth \end{itemize} \end{document} However, in ConTeXt the linewidth is reserved for "rule thickness" or something similar. Which is the ConTeXt alternative to LaTeX's \linewidth? Mojca