Am 31.05.2014 um 13:37 schrieb Pablo Rodriguez
On 05/31/2014 12:49 PM, Hans Hagen wrote:
On 5/31/2014 8:30 AM, Pablo Rodriguez wrote:
[...] If I disable \setuptagging, output is fine. But with \setuptagging enabled, the typing environment doesn’t display multiple lines.
Am I doing something wrong or have I hit a bug?
The space in verbatim is defined differently because otherwise it can get lost in the export; you can experiment with:
\appendtoks \unexpanded\def\obeyedspace{\hskip\zeropoint\char32\hskip\zeropoint}% \to \everyenableelements
Many thanks for your reply, Hans.
I’m afraid I cannot make it work even with the minimal sample:
\setuppapersize[A6] \setuptagging[state=start] \setuptyping[margin=yes,align={right,broad}] \appendtoks \unexpanded\def\obeyedspace{\hskip\zeropoint\char32\hskip% \zeropoint}% \to \everyenableelements \starttext \starttyping \setuptyping[margin=yes, align={right,broad}] \stoptyping \stoptext
Since I’m not familiar with \appendtoks, I don’t know whether I applied it right.
Is your code applied right in the sample above?
1. I think you have to redefined the \doverbatimspace command. \appendtoks \unexpanded\def\doverbatimspace{\hskip\zeropoint\char32\hskip\zeropoint}% \to \everyenableelements 2. You have to put this code block *before* \setuptagging. Wolfgang