セサミストリートのテーマ

セサミストリートのテーマ。

サーニーデイ(Sunny Day )ってやつね。

前から気になっていました。

f:id:niming538:20140528161140p:plain

pdf => https://db.tt/YrMBj6qg

midiファイルはここ。https://db.tt/kegIlIjk

以下ソースです。

\version "2.16.2"

\header {
title = "セサミストリートのテーマ"
subtitle = "Sesame Street Theme"
}

global = {
\key c \major
\time 4/4
\tempo 4=120
}

chordNames = \chordmode {
\global
% Chords follow here.
\set chordChanges = ##t
c2 d:m7 c:7 d:m7 c d:m7 c:7 d:m7
c 1 f:7 c f:7
c f g2 :7 d:m7
g1 :7 f:9 g:7 c
\set chordChanges = ##f
c1
}

melody = \relative c'' {
\global
% Music follows here.
<c,e>4 |

\times 2/3 { 4 8 } 4 |
4 |

\times 2/3 { 4 8 } 4 |
\break
\bar "|:"
\repeat volta 2 {
r4 c'~
\times 2/3 { c4 a8 ~ } a4 |
f2
\times 2/3 { f4 g8 } a4 |
r4 c~
\times 2/3 { c4 a8 ~ } a4 |
f2 r2 |
\break
r4 c'~
\times 2/3 {c4 a8~}a4 |
f4~\times 2/3{f4 f8} g4 a |
b ~\times 2/3{b4 c8~}c4 d~ |
d2 r4 \times 2/3{c4 d8} |
es4 d c \times 2/3 {a4 g8~} |
g4 \times 2/3 {g4 a8} bes4 a |
}
\alternative {
{
\times 2/3 {
g4 c,8
}
\times 2/3 {
c4 c8~
}
c2|
}
{
\times 2/3{g'4 c8}\times 2/3 {c4 c8~} c2|
}
}
\bar "|."
}

verse = \lyricmode {
% Lyrics follow here.

}

\score {
<<
\new ChordNames \chordNames
\new Staff { \melody }
\addlyrics { \verse }
>>
\layout { }
\midi { }
}