小さな世界


ディズニーランドに行くと流れている曲です。歌える高さにキーを下げてあります。LilyPondのファイルを移調するにはFrescobaldiでメニューからTransposeを選択し、元のキーと変化させたいキーをスペースで区切って、たとえば

c g

とか入れると、ハ長調からト長調にコードも含めて一気に変換してくれます。

smallworld01.pdf 直
smallworld01.midi 直

\version "2.14.2"

\header {
  title = "子どもの世界"
  subtitle = "It‘s a small world, 小さな世界"
  composer = "R.M.シャーマン、R.B.シャーマン"
}

global = {
  \key g \major
  \numericTimeSignature
  \time 2/4
  \tempo 4=120
  \partial 4
}

chordNames = \chordmode {
  \global
  \set chordChanges = ##t
  % Chords follow here.
  s4 g2 g d:7 d:7 d:7 d:7 g g 
  \break
  g g:7 c c:m g d:7 g g
  \break
  g g d:7 d:7 d:7 d:7 g g
  \break
  g g:7 c c g d:7 g g4
  
}

melody = \relative c'' {
  \global
  % Music follows here.
  b,8 c |%0
  d4 b' |%1
  g a8 g |%2
  g4 fis |%3
  fis a,8 b |%4
  c4 a' |%5
  fis g8 fis |%6
  e4 d |%7
  d b8 c |%8
  d4 g8 a |%9
  b4 a8 g |%10
  e4 a8 b |%11
  c4 b8 a |%12
  d,4 c' |%13
  b a |%14
  g2~ |%15
  g4 r |%16
  g4. g8 |%17
  b4 g |%18
  a4. a8 |%19
  a4. r8 |%20
  a4. a8 |%21
  c4 a |%22
  b4. b8 |%23
  b4. r8 |%24
  b4. b8 |%25
  d4 b |%26
  c4. c8 |%27
  c4 b8 a |%28
  d,4 c' |%29
  b a |%30
  g2~ |%31
  g4 %32
  \bar "|."
}

verse = \lyricmode {
  % Lyrics follow here.
  
}

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