> Date: Wed, 10 May 2000 14:05:25 +0200 (MEST)
> From: Bernhard Lang <[EMAIL PROTECTED]>
[...]
> Actually, this is not a problem of \changecontext but a problem of extra
> space in your MusiXTeX file at the line ends. Line end characters are
> translated into space characters by TeX. This may add some extra space
> which is not visible to MusiXTeX/musixflx but is visible to TeX and
> therefore messes up the spacing. You can get rid of this extra space if
> you add a comment character '%' at the very end of each line,
That very ok, up to here :-)
> [...] like
> '...\en%'. This makes the end-of-line invisible to TeX.
But this example isn't good. If a line ends with a simple TeX-
token then it's not neccessary to end the line with "%" because
the TeX-token eats already all successive white space.
So the error occured in lines like
\setclef{3}{6}
which have to be written
\setclef{3}{6}%
if within \startpiece...\stoppiece
-- Werner