Menu

#1928 Incorrect alignment of lyrics on tied notes when using completion_heads_engraver

Accepted
nobody
None
Ugly
2015-11-09
2011-09-24
Anonymous
No

Originally created by: *anonymous

Originally created by: tdanielsmusic

(notified by Arvid Grøtting <arvidgr@gmail.com>)

% \version "2.15.12"

%  Lyrics in line two shouldn't line up with those in line
% one; rather, they should line up with those in line three.

mel = \relative c'' {
c2 c1 c1 c2
}

lyr = \lyricmode {
One -- two __ three -- four.
}

\score {
\new Score <<
   \new Staff <<
     \new Voice = "normal" \mel
   >>
   \new Lyrics \lyricsto "normal" \lyr
   \new Staff <<
     \new Voice = "completion" \with {
       \remove "Note_heads_engraver"
       \consists "Completion_heads_engraver"
     } \mel
   >>
   \new Lyrics \lyricsto "completion" \lyr
   \new Staff <<
     \new Voice = "revisited" \relative c'' {
       c2 c~c c~c c
     }
   >>
   \new Lyrics \lyricsto "revisited" \lyr
>>
}

Discussion

  • Google Importer

    Google Importer - 2011-09-24

    Originally posted by: tdanielsmusic

    Here's a reduced example showing the problem:

    \score {
      <<
       \new Staff {
         \new Voice = "completion" \with {
           \remove "Note_heads_engraver"
           \consists "Completion_heads_engraver"
         }
         \relative c'' {
           c2 c1 c1 c2
         }
       }
       \new Lyrics
       \lyricsto "completion" {
         One -- two __ three -- four.
       }
      >>
    }

     
  • Google Importer

    Google Importer - 2015-04-27

    Originally posted by: simon.al...@mail.de

    Workaround:
    \once\override LyricSyllable.self-alignment-X = -1
    A solution would involve Lyric_engraver listening to the associated Voice’s Completion_heads_engraver (?).

     
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.