Gitarre: Blueszupfen mit 6er und 7er-Akkorden Wiederh.


Eine kleine Wiederholung aus dem Balladendiplom. Die Theorie zu den Intervallen (Sexte und Septime) kann man sich noch einmal dort bei der Lektion "Blueszupfen mit 6er und 7er-Akkorden" vergegenwärtigen

die benötigten Akkorde

\version "2.20.0"
\header {
  title="Blues-Zupfen in E"
  encoder="mjchael"
}
myChords =  \chordmode {
  e4 e:6 e:7 e:6 | e4 e:6 e:7 e:6 |
  e4 e:6 e:7 e:6 | e4 e:6 e:7 e:6 |
  a4 a:6 a:7 a:6 | a4 a:6 a:7 a:6 |
  e4 e:6 e:7 e:6 | e4 e:6 e:7 e:6 |
  b1:7           | a4 a:6 a:7 a:6 |
  e4 e:6 e:7 e:6 | b1:7
}

myDiskant = \unfoldRepeats {
 \repeat volta 4 { % E
  b8 gis cis' gis d' gis cis' gis
 }
 \repeat volta 2 { % A
  e'8 cis' fis' cis' g' cis' fis' cis'
 }
 \repeat volta 2 { % E
  b8 gis cis' gis d' gis cis' gis
 }
 { % B7
  fis' b fis' b fis' b fis' b
 }
 { % A
  e'8 cis' fis' cis' g' cis' fis' cis'
 } 
 { % E
  b8 gis cis' gis d' gis cis' gis
 }
 { % B7
  fis' b fis' b fis' b fis' b
 }
}

myBass = {
  e,4 4 4 4 | 4 4 4 4 | 
    4 4 4 4 | 4 4 4 4 |
  a,4 4 4 4 | 4 4 4 4 | 
  e,4 4 4 4 | 4 4 4 4 |
  b,4 4 4 4 | a,4 4 4 4 | 
  e,4 4 4 4 | a,4 4 4 4 |
}

myGuitar= { << 
  \myDiskant \\ \myBass 
>> }

\score {
  <<
    \new ChordNames { \myChords }
    {
      \new Staff  <<
        \tempo 4 = 120
        %Tempo ausblenden
        \set Score.tempoHideNote = ##t
        \time 4/4
        \key e \major
        \set Staff.midiInstrument = #"acoustic guitar (nylon)"
        \clef "G_8" 
        \repeat volta 4
        \myGuitar
      >>
    }
    \new TabStaff {
      \tabFullNotation 
      \repeat volta 4
      \myGuitar
    }
  >>
  \layout {}
}
% Midiausgabe mit Wiederholungen, ohne Akkorde
\score {
  <<
    \unfoldRepeats {
      \new Staff  <<
        \tempo 4 = 120
        \time 4/4
        \key c \major
        \set Staff.midiInstrument = #"acoustic guitar (nylon)"
        \clef "G_8" \repeat volta 4
        \myDiskant
        \\
        \repeat volta 4
        \myBass
      >>
    }
  >>
  \midi {}
}
% unterdrückt im raw="!"-Modus das DinA4-Format.
\paper {
  indent=0\mm
  % DinA4 0 210mm - 10mm Rand - 20mm Lochrand = 180mm
  line-width=180\mm
  oddFooterMarkup=##f
  oddHeaderMarkup=##f
  % bookTitleMarkup=##f
  scoreTitleMarkup=##f
}

Übungsbeispiele Bearbeiten