Piano template with centered lyrics: Difference between revisions
Appearance
Import snippet from LSR |
m Replace version="2.24.0" with version="2.24" now that the LilyWiki extension supports auto-selecting the latest release in a stable series |
||
| Line 1: | Line 1: | ||
Instead of having a full staff for the melody and lyrics, lyrics can be centered between the staves of a piano staff. | Instead of having a full staff for the melody and lyrics, lyrics can be centered between the staves of a piano staff. | ||
<lilypond version="2.24 | <lilypond version="2.24"> | ||
upper = \relative c'' { | upper = \relative c'' { | ||
\clef treble | \clef treble | ||
Revision as of 18:50, 16 November 2025
Instead of having a full staff for the melody and lyrics, lyrics can be centered between the staves of a piano staff.
\version "2.24"
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 { }
}