Piano template with centered lyrics
Instead of having a full staff for the melody and lyrics, lyrics can be
centered between the staves of a piano staff.
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 { }
}
  ![[image of music]](../ae/lily-20f2b530.png)