ブルース・スケール

「ブルース・スケール」で検索すると、いろんなことが書いてあって、どれが本当かわかりません。書いてあることと楽譜が違っているのもあってますます混乱します。ひょっとすると現実もいろいろなのかもしれないのですが、いちおうそれらしいものが見つかったのでのせておきます。

ブルース・スケールはメジャー・スケールにブルー・ノートを加え、代わりに2ndと6thとメジャー7thを省いたものだ。

本は、Leo AlfassyのBlues Hanonです。

bluesscale01.midi 直
bluesscale01.pdf 直

\version "2.16.0"

\header {
  title = "ブルース・スケール"
  subtitle = "Blues Scale"
}

global = {
  \key c \major
  \override Score.TimeSignature #'stencil = ##f
  \time 4/4
  \override Score.BarLine #'stencil = ##f
}

chordNames = \chordmode {
  \global
  % Chords follow here.
}

melody = \relative c'{
  \global
  % Music follows here.
  c4 es e f ges g bes c
  \break
  \revert Score.BarLine #'stencil
  \bar "|."
}

verse = \lyricmode {
  % Lyrics follow here.
  
}

\score {
  <<
    \new ChordNames \chordNames
    \new Staff { \melody }
    \addlyrics { \verse }
  >>
  \layout { 
  %indent = #0
  line-width = #170
  ragged-last = ##f

  }
  \midi {
    \context {
      \Score
      tempoWholesPerMinute = #(ly:make-moment 100 4)
    }
  }
}