sing-alongs/src/songs/FoggyDew.ly

74 lines
1.1 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

\version "2.18.2"
\include "articulate.ly"
\header {
title = "The Foggy Dew"
composer = "Charles ONeill"
}
global = {
\time 4/4
\key g \major
}
chordNames = \chordmode {
\global
s2 a1*2:m g c1 a1*2:m s1 c1*2 g1 e:m c a1*3:m a1*2:m g1*2 c1 a:m
}
melody = \relative g' {
\global
\partial 2 b4 d |
e2 d4 b |
e2 d4 b |
a2 b |
d, e4 fis |
g b a g |
e2. d4 |
e1( |
e2) \bar ":|"
\partial 2 fis |
g b |
d c4 b |
a2 a |
b g4 a |
b2 g'4 fis |
e d b d |
e1( |
e2) b4 d |
e2 d4 b |
e2 d4 b |
a2 b |
d, e4 fis |
g b a g |
e2. e4 |
e2 \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
}
}
}