On Sat, Mar 19, 2011 at 8:22 PM, Xavier Scheuer<address@hidden> wrote:
On 20 March 2011 01:05, Michael Ellis<address@hidden> wrote:
Just installed 2.13.54 on OS X. Attached images show what happens to
the NoteNames engraver (which I use every day) under this release. In
2.12, the NoteNames output lays close beneath the lyric line. In
2.13.54 the gap is quite large and the output collides with markup
above the next staff. Is there a workaround?
Looks like a problem of staff-affinity not defined for NoteNames
context or something like that.
This definitely deserves to be reported.
Could you send a message to address@hidden with a proper minimal
example of code?
Done by CC of this message. Image from example below suggest that
NoteNames vertical is incompletely synchronized with Staff vertical
spacing. Amount of interference varies from line to line. Worst at
bottom of image.
Thanks!
Mike
%----------------------------------------------------
\version "2.13.54"
notes = \relative c {
\repeat unfold 40 { c'4 c c c }
}
mylyrics = \repeat unfold 40 \lyricmode { \tempo "Allegro" ly -- ric ly -- ric }
\score {
<<
\new Voice = "voice" { \notes }
\new Lyrics \lyricsto "voice" { \mylyrics }
\context NoteNames \notes
>>
}
%-------------------------------------------------------------