ハイホー

お年を取ったかたのための歌集に、ディズニーの白雪姫のハイ・ホーが載っていました。戦前のアニメなんですね。民謡や古い流行歌の間にあるとすごい違和感があります。ピアノでタラタラ弾いていたらなぜかふわっと涙が溢れてきました。

hiho01.pdf 直
hiho01.midi 直

\version "2.14.2"

\header {
  title = "ハイ・ホー"
  subtitle = "ディズニーアニメ白雪姫より"
  composer = "フランク・チャーチル"
}

global = {
  \key f \major
  \numericTimeSignature
  \time 4/4
  \tempo 4 = 152
  \tempo "元気に"
}

chordNames = \chordmode {
  \global
  \set chordChanges = ##t
  \partial 4
  s4
  f1 d:m g:m7 c:7 
  \break
  f d:m g2:m c:7 f1 
  \break
  g2:m a:7 d1:m g2:m a:7 d1:m 
  \break
  f f2 g:7  c1:7 c1:7
  \break
  \repeat volta 2 {f bes g:7 c:7
  \break
  bes2 f bes4 a:7 d:m bes:m f1 c:7
  \break
  f bes g:7 c:7
  \break
  bes2 f bes4 a:7 d:m bes:m f2. c4:7 
  \set chordChanges =##f
  }

  \alternative { { f1 } { f1 } } 
}

melody = \relative c'' {
  \global
  % Music follows here.
  \partial 4
  a4 |%0
  c c c c |%1
  a a a a |%2
  g4. a8 bes4 d |%3
  c2. a4 |%4
  c c c c |%5
  a a a a |%6
  g4. a8 g4 c, |%7
  f2. f4 |%8
  e f g a |%9
  f e d f |%10
  e f g a |%11
  f e d f8 g |%12
  a2. f8 g |%13
  a2 b |%14
  c1~ |%15 
  c2 r4 c, |%16
  f2. e4 |%17
  d2. f4 |%18
  g4. a8 g4 f |%19
  e2. c4 |%20
  d f c c |%21
  d e f bes |%22
  a2. f4 |%23
  g c, d e |%24
  f2. e4 |%25
  d2. f4 |%26
  g4. a8 g4 f |%27
  e2. c4 |%28
  d4 f c c |%29
  d e f bes |%30
  a2. g4 |%31
  f c d e |%32
  f2. r4 |%33
  \bar "|."
  
}

verse = \lyricmode {
  % Lyrics follow here.
  
}

\score {
  <<
    \new ChordNames \chordNames
    \new Staff { \melody }
    \addlyrics { \verse }
  >>
  \layout { }
  \midi {
    \context {
      \Score
      tempoWholesPerMinute = #(ly:make-moment 100 4)
    }
  }
}