>|The problem seems to be in this definition in musixtex.tex:
 >|
 >|\def\C@Inter{\stem@skip\interportee \advance\stem@skip-\@ight\internote
 >|  \ifnum\nblines=\f@ur \advance\stem@skip\tw@\internote \fi
 >|  \ifnum\nblines>\fiv@ \advance\stem@skip-\tw@\internote \fi}
 >|
 >|which works for \nblines = 3, 4, 5, and 6 but not for 7 or
 >|greater.
 >|
 >|This macro is called in several places and shouldn't be
 >|modified without understanding what it's for, which isn't
 >|obvious to me.

Still not obvious to me but the following works in the same way
for \nblines = 3 to 6 but also works for > 6:

\def\C@Inter{%
  \stem@skip\interportee
  \ifnum\nblines=\thr@@
    \advance\stem@skip-\@ight\internote
  \else
    \advance\stem@skip-\nblines\internote
    \advance\stem@skip-\nblines\internote
    \advance\stem@skip 2\internote
  \fi}

If you want to avoid interfering with whatever this
macro does elsewhere, replace the call of \C@Inter in
the definition of \Comp@High.

Bob


-------------------------------
[email protected] mailing list
If you want to unsubscribe or look at the archives, go to 
http://tug.org/mailman/listinfo/tex-music

Reply via email to