Hey all,

yesterday I stumbled across this example in the Learning Manual:  
http://lilypond.org/doc/v2.19/Documentation/learning/piano-centered-lyrics. In 
my opinion it can and should be simplified.  Obviously there’s no need anymore 
for a GrandStaff to accept Lyrics. \consists “Bar_engraver” has also become 
unnecessary, here. To make the example more consistent with the text I’d use a 
PianoStaff instead of a GrandStaff like so:


\version "2.19.15"
upper = \relative c'' {
  \clef treble
  \key c \major
  \time 4/4

  a4 b c d
}

lower = \relative c {
  \clef bass
  \key c \major
  \time 4/4

  a2 c
}

text = \lyricmode {
  Aaa Bee Cee Dee
}

\score {
  \new PianoStaff <<
    \new Staff = upper { \new Voice = "singer" \upper }
    \new Lyrics \lyricsto "singer" \text
    \new Staff = lower { \lower }
  >>
  \layout {}
  \midi { }
}

hth,
patrick
_______________________________________________
bug-lilypond mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/bug-lilypond

Reply via email to