sing-alongs/src/songs/KerryRecruit.ly

53 lines
826 B
Plaintext

\version "2.18.2"
\include "articulate.ly"
\header {
title = "The Kerry Recruit"
composer = "Traditional"
}
global = {
\time 6/8
\key g \major
}
chordNames = \chordmode {
\global
s8 g1*6/8 d:7 d c1*3/8 g
}
melody = \relative b' {
\global
\partial 8 b8 |
a8 g g g4 b8 |
b a a a4 d8 |
e d d b4 a8 |
a g g g4 \bar "|."
}
\book {
\score {
<<
\new ChordNames \chordNames
\new Staff { \melody }
>>
\layout {}
}
}
\book {
\score {
\unfoldRepeats \articulate
<<
\new Voice = "chords" {
\chordNames
}
\new Voice = "melody" {
\melody
}
>>
\midi {
\tempo 4 = 130
}
}
}