Piano template with melody and 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: | ||
Here is a typical song format: one staff with the melody and lyrics, with piano accompaniment underneath. | Here is a typical song format: one staff with the melody and lyrics, with piano accompaniment underneath. | ||
<lilypond version="2.24 | <lilypond version="2.24"> | ||
melody = \relative c'' { | melody = \relative c'' { | ||
\clef treble | \clef treble | ||
Revision as of 18:52, 16 November 2025
Here is a typical song format: one staff with the melody and lyrics, with piano accompaniment underneath.
\version "2.24"
melody = \relative c'' {
\clef treble
\key c \major
\time 4/4
a b c d
}
text = \lyricmode {
Aaa Bee Cee Dee
}
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
}
\score {
<<
\new Voice = "mel" { \autoBeamOff \melody }
\new Lyrics \lyricsto mel \text
\new PianoStaff <<
\new Staff = "upper" \upper
\new Staff = "lower" \lower
>>
>>
\layout {
\context { \Staff \RemoveEmptyStaves }
}
\midi { }
}