Zum Inhalt springen

Gitarre: Picking Rhythmusstudie

Aus Wikibooks

Picking Rhythmus Studie

[Bearbeiten]

Das Fingerpicking soll dich irgendwann ermöglichen gleichzeitig eine Melodien und die Begleitung zu spielen. In der Melodie können dir alle möglichen Rhythmen begegnen, und selbst in der Begleitung können dir alle möglichen Rhythmen begegnen. Hier möchten wir wichtige Taktmodule einmal isoliert üben.

Achtel-Feeling

[Bearbeiten]

Der Daumen übernimmt mit seinem Wechselbass die Aufgabe des Vorzählers.

Rhythmus 00

[Bearbeiten]

\version "2.20.0"
\header {
  title="Rhythmus 00"
  subtitle="im Diskant"
  encoder="mjchael"
}

myKey = {
  \tempo 4 = 120
  \set Score.tempoHideNote = ##t
  \time 4/4
  \key g \major
  \set Staff.midiInstrument = #"acoustic guitar (nylon)"
  \clef "G_8" 
}

myDiskant = {
  r1   | % <g b g'> G
  r1   | % <g b e'>
  r1   | % <g c' e'>
  r1   | % <a d' fis'>
  \mark "4x"
}

myBass = {
  g,4 d <fis, \parenthesize b,> d | % G (/F#)
  e,4 e  b,   e  | % Em
  c4  g  e    g  | % C
  d4  a  a,   a  | % D
}

myPulse = { 
  \repeat volta 4 \lyricmode {
  \set fontSize = #-2 
  \override Score.LyricText.color = red
  "1"8 "+"8 "2"8 "+"8 
  \override Score.LyricText.color = blue
  "3"8 "+"8 "4"8 "+"8 
  }
}

%% Layout
\score {
  <<
    \new ChordNames {
      \chordmode {
        g2 \once \override ChordName.text = "(/F#)" g:/fis e1:m c d
      }
    }
    {
      \new Staff  <<
        \myKey
        \repeat volta 4 
        \myDiskant
        \\
        \myBass
      >>
    }

 \new Lyrics \unfoldRepeats \myPulse
  
    \new TabStaff {
      \tabFullNotation \repeat volta 4
      <<
        \myDiskant
        \\
        \myBass
        \\
        \unfoldRepeats  \myPulse
      >>
    }
  >>
\layout {
    \context {
      \Lyrics
      \override VerticalAxisGroup.staff-affinity = ##f
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
    \context {
      \Staff
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
  }
}
% Midi
\score {
  <<
    \unfoldRepeats {
      \new Staff  <<
        \myKey
        \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=120\mm
  oddFooterMarkup=##f
  oddHeaderMarkup=##f
  % bookTitleMarkup=##f
  scoreTitleMarkup=##f
}

Allerdings beachten wir für die folgenden Übungen nicht weiter den Wechselbass. Er gibt uns nur wie ein Metronom oder das Schlagzeug den Takt vor.

Jeder Rhythmus kann und sollte auch ohne Wechselbass geübt werden

Rhythmus FF

[Bearbeiten]

Wenn die Finger der Zupfhand im Weg sind, kann der Daumen auch auf andere Bass-Saiten ausweichen.


\version "2.20.0"
\header {
  title="Rhythmus FF"
  subtitle="im Diskant"
  encoder="mjchael"
}

myKey = {
  \tempo 4 = 80
  \set Score.tempoHideNote = ##t
  \clef "G_8" 
  \time 4/4
  \key g \major
  \set Staff.midiInstrument = #"acoustic guitar (nylon)"
}

myDiskant = {
  <g b g'>   8 8 8 8 8 8 8 8 | % G
  <g b e'>   8 8 8 8 8 8 8 8 | % Em
  <g c' e'>  8 8 8 8 8 8 8 8 | % C
  <a d' fis'>8 8 8 8 8 8 8 8 | % D
  \mark "4x"
}

myBass = {
  g,4 d fis, d  | % G /F#
  e,4 e  b,  e  | % Em
  c4  e  g,   e  | % C
  d4  a, d   a, | % D
}

myPulse = { 
  \repeat volta 4 \lyricmode {
    \override Score.LyricText.color = red
  \set fontSize = #-2 
  "1"8 "+"8 "2"8 "+"8 
    \override Score.LyricText.color = blue
  "3"8 "+"8 "4"8 "+"8 
  }
}

% Layout- bzw. Bildausgabe
\score {
  <<
    \new ChordNames {
      \chordmode {
        g2 \once \override ChordName.text = "/F#" g:/fis
        e1:m c d
      }
    }
    {
      \new Staff  <<
        \myKey
        \repeat volta 4
        % Balken nur über viertel 
        \myDiskant
        \\
        % Noten im Bass - beachte: Wiederholungszeichen ist für Midi notwendig!
        \repeat volta 4
        \myBass
      >>
    }

 \new Lyrics \unfoldRepeats \myPulse
  
    \new TabStaff {
      \tabFullNotation \repeat volta 4
      <<
        % Tabulatur im Diskant
        \myDiskant
        \\
        \myBass
      >>
    }
  >>
\layout {
    \context {
      \Lyrics
      \override VerticalAxisGroup.staff-affinity = ##f
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
    \context {
      \Staff
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
  }
}
% Midi
\score {
  <<
    \unfoldRepeats {
      \new Staff  <<
        \myKey
        \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=120\mm
  oddFooterMarkup=##f
  oddHeaderMarkup=##f
  % bookTitleMarkup=##f
  scoreTitleMarkup=##f
}

Rhythmus EE

[Bearbeiten]

\version "2.20.0"
\header {
  title="Rhythmus EE"
  subtitle="im Diskant"
  encoder="mjchael"
}

myKey = {
  \tempo 4 = 80
  \set Score.tempoHideNote = ##t
  \clef "G_8" 
  \time 4/4
  \key g \major
  \set Staff.midiInstrument = #"acoustic guitar (nylon)"
}

myDiskant = {
  <g b g'>   8 8 4 8 8 4 | % G
  <g b e'>   8 8 4 8 8 4 | % Em
  <g c' e'>  8 8 4 8 8 4 | % C
  <a d' fis'>8 8 4 8 8 4 | % D
  \mark "4x"
}

myBass = {
  g,4 d fis, d  | % G /F#
  e,4 e  b,  e  | % Em
  c4  g  e   g  | % C
  d4  a  a,  a  | % D
}

myPulse = { 
  \repeat volta 4 \lyricmode {
    \override Score.LyricText.color = red
  \set fontSize = #-2 
  "1"8 "+"8 "2"8 "."8 
    \override Score.LyricText.color = blue
  "3"8 "+"8 "4"8 "."8 
  }
}

% Layout- bzw. Bildausgabe
\score {
  <<
    \new ChordNames {
      \chordmode {
        g2 \once \override ChordName.text = "/F#" g:/fis e1:m c d
      }
    }
    {
      \new Staff  <<
        \myKey
        \repeat volta 4
        % Balken nur über viertel 
        \myDiskant
        \\
        % Noten im Bass - beachte: Wiederholungszeichen ist für Midi notwendig!
        \repeat volta 4
        \myBass
      >>
    }


 \new Lyrics \unfoldRepeats \myPulse
  

    \new TabStaff {
      \tabFullNotation \repeat volta 4
      <<
        % Tabulatur im Diskant
        \myDiskant
        \\
        \myBass
      >>
    }
  >>
\layout {
    \context {
      \Lyrics
      \override VerticalAxisGroup.staff-affinity = ##f
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
    \context {
      \Staff
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
  }
}
% Midi
\score {
  <<
    \unfoldRepeats {
      \new Staff  <<
        \myKey
        \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=120\mm
  oddFooterMarkup=##f
  oddHeaderMarkup=##f
  % bookTitleMarkup=##f
  scoreTitleMarkup=##f
}

Rhythmus DD

[Bearbeiten]

\version "2.20.0"
\header {
  title="Rhythmus DD"
  subtitle="im Diskant"
  encoder="mjchael"
}

myKey = {
  \tempo 4 = 80
  \set Score.tempoHideNote = ##t
  \clef "G_8" 
  \time 4/4
  \key g \major
  \set Staff.midiInstrument = #"acoustic guitar (nylon)"
}

myDiskant = {
  <g b g'>    8 4 8 8 4 8 | % G
  <g b e'>    8 4 8 8 4 8 | % Em
  <g c' e'>   8 4 8 8 4 8 | % C
  <a d' fis'> 8 4 8 8 4 8 | % D
  \mark "4x"
}

myBass = {
  g,4 d fis, d  | % G /F#
  e,4 e  b,  e  | % Em
  c4  e  g,  e  | % C
  d4  a, d   a, | % D
}

myPulse = { 
  \repeat volta 4 \lyricmode {
    \override Score.LyricText.color = red
  \set fontSize = #-2 
  "1"8 "+"8 "."8 "+"8 
    \override Score.LyricText.color = blue
  "3"8 "+"8 "."8 "+"8 
  }
}

% Layout- bzw. Bildausgabe
\score {
  <<
    \new ChordNames {
      \chordmode {
        g2 \once \override ChordName.text = "/F#" g:/fis e1:m c d
      }
    }
    {
      \new Staff  <<
        \myKey
        \repeat volta 4 
        \myDiskant
        \\
        \repeat volta 4
        \myBass
      >>
    }

 \new Lyrics \unfoldRepeats \myPulse
  
  \new TabStaff {
      \tabFullNotation \repeat volta 4
      <<
        \myDiskant
        \\
        \myBass
      >>
    }
  >>
\layout {
    \context {
      \Lyrics
      \override VerticalAxisGroup.staff-affinity = ##f
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
    \context {
      \Staff
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
  }
}
% Midi
\score {
  <<
    \unfoldRepeats {
      \new Staff  <<
        \myKey
        \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=120\mm
  oddFooterMarkup=##f
  oddHeaderMarkup=##f
  % bookTitleMarkup=##f
  scoreTitleMarkup=##f
}

Rhythmus CC

[Bearbeiten]

\version "2.20.0"
\header {
  title="Rhythmus CC"
  subtitle="im Diskant"
  encoder="mjchael"
}

myKey = {
  \tempo 4 = 80
  \set Score.tempoHideNote = ##t
  \clef "G_8" 
  \time 4/4
  \key g \major
  \set Staff.midiInstrument = #"acoustic guitar (nylon)"
}

myDiskant = {
  <g b g'>   8 4. 8 4. | % G
  <g b e'>   8 4. 8 4. | % Em
  <g c' e'>  8 4. 8 4. | % C
  <a d' fis'>8 4. 8 4. | % D
  \mark "4x"
}

myBass = {
  g,4 d fis, d  | % G /F#
  e,4 e  b,  e  | % Em
  c4  e  g,  e  | % C
  d4  a, d   a, | % D
}

myPulse = { 
  \repeat volta 4 \lyricmode {
    \override Score.LyricText.color = red
  \set fontSize = #-2 
  "1"8 "+"8 "."8 "."8 
    \override Score.LyricText.color = blue
  "3"8 "+"8 "."8 "."8 
  }
}

% Layout
\score {
  <<
    \new ChordNames {
      \chordmode {
        g2 \once \override ChordName.text = "/F#" g:/fis e1:m c d
      }
    }
    {
      \new Staff  <<
        \myKey
        \repeat volta 4 
        \myDiskant
        \\
        \repeat volta 4
        \myBass
      >>
    }

 \new Lyrics \unfoldRepeats \myPulse
  
  \new TabStaff {
      \tabFullNotation \repeat volta 4
      <<
        \myDiskant
        \\
        \myBass
      >>
    }
  >>
\layout {
    \context {
      \Lyrics
      \override VerticalAxisGroup.staff-affinity = ##f
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
    \context {
      \Staff
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
  }
}
% Midi
\score {
  <<
    \unfoldRepeats {
      \new Staff  <<
        \myKey
        \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=120\mm
  oddFooterMarkup=##f
  oddHeaderMarkup=##f
  % bookTitleMarkup=##f
  scoreTitleMarkup=##f
}

Rhythmus BB

[Bearbeiten]

\version "2.20.0"
\header {
  title="Rhythmus BB"
  subtitle="im Diskant"
  encoder="mjchael"
}

myKey = {
  \tempo 4 = 80
  \set Score.tempoHideNote = ##t
  \clef "G_8" 
  \time 4/4
  \key c \major
  \set Staff.midiInstrument = #"acoustic guitar (nylon)"
}

myDiskant = {
  <g c' e'>   4 8 8 4 8 8 | % C
  <a c' e'>   4 8 8 4 8 8 | % Am
  <a c' f'>  4 8 8 4 8 8 | % F
  <g b g'>4 8 8 4 8 8 | % G
  \mark "4x"
}

myBass = {
  c4 e b, e  | % C /B
  a,4 e  a,  e  | % Am
  f4  a,  f  a,  | % F
  g,4  d b,  d | % g
}

myPulse = { 
  \repeat volta 4 \lyricmode {
    \override Score.LyricText.color = red
  \set fontSize = #-2 
  "1"8 "."8 "2"8 "+"8 
    \override Score.LyricText.color = blue
  "3"8 "."8 "4"8 "+"8 
  }
}

% Layout- bzw. Bildausgabe
\score {
  <<
    \new ChordNames {
      \chordmode {
        c2 \once \override ChordName.text = "/B" c:/b a1:m f g
      }
    }
    {
      \new Staff  <<
        \myKey
        \repeat volta 4 
        \myDiskant
        \\
        \repeat volta 4
        \myBass
      >>
    }

 \new Lyrics \unfoldRepeats \myPulse
  
  \new TabStaff {
      \tabFullNotation \repeat volta 4
      <<
        \myDiskant
        \\
        \myBass
      >>
    }
  >>
\layout {
    \context {
      \Lyrics
      \override VerticalAxisGroup.staff-affinity = ##f
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
    \context {
      \Staff
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
  }
}
% Midi
\score {
  <<
    \unfoldRepeats {
      \new Staff  <<
        \myKey
        \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=120\mm
  oddFooterMarkup=##f
  oddHeaderMarkup=##f
  % bookTitleMarkup=##f
  scoreTitleMarkup=##f
}

Rhythmus AA

[Bearbeiten]

\version "2.20.0"
\header {
  title="Rhythmus AA"
  subtitle="im Diskant"
  encoder="mjchael"
}

myKey = {
  \tempo 4 = 80
  \set Score.tempoHideNote = ##t
  \clef "G_8" 
  \time 4/4
  \key c \major
  \set Staff.midiInstrument = #"acoustic guitar (nylon)"
}

myDiskant = {
  <g c' e'> 4 4 4 4 | % C
  <a c' e'> 4 4 4 4 | % Am
  <a c' f'> 4 4 4 4 | % F
  <g b g'>  4 4 4 4 | % G
  \mark "4x"
}

myBass = {
  c4 e b, e  | % C /B
  a,4 e  a,  e  | % Am
  f4  a,  f  a,  | % F
  g,4  d b,  d | % g
}

myPulse = { 
  \repeat volta 4 \lyricmode {
    \override Score.LyricText.color = red
  \set fontSize = #-2 
  "1"8 "."8 "2"8 "."8 
    \override Score.LyricText.color = blue
  "3"8 "."8 "4"8 "."8 
  }
}

% Layout- bzw. Bildausgabe
\score {
  <<
    \new ChordNames {
      \chordmode {
        c2 \once \override ChordName.text = "/B" c:/b a1:m f g
      }
    }
    {
      \new Staff  <<
        \myKey
        \repeat volta 4 
        \myDiskant
        \\
        \repeat volta 4
        \myBass
      >>
    }

 \new Lyrics \unfoldRepeats \myPulse
  
  \new TabStaff {
      \tabFullNotation \repeat volta 4
      <<
        \myDiskant
        \\
        \myBass
      >>
    }
  >>
\layout {
    \context {
      \Lyrics
      \override VerticalAxisGroup.staff-affinity = ##f
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
    \context {
      \Staff
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
  }
}
% Midi
\score {
  <<
    \unfoldRepeats {
      \new Staff  <<
        \myKey
        \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=120\mm
  oddFooterMarkup=##f
  oddHeaderMarkup=##f
  % bookTitleMarkup=##f
  scoreTitleMarkup=##f
}

Falls du beim F mit dem Bass durcheinander kommst, schadet es nichts, zuerst die A-Saite und dann erst die D-Saite im 3. Bund zu zupfen.

Rhythmus 99

[Bearbeiten]

\version "2.20.0"
\header {
  title="Rhythmus 99"
  subtitle="im Diskant"
  encoder="mjchael"
}

myKey = {
  \tempo 4 = 80
  \set Score.tempoHideNote = ##t
  \clef "G_8" 
  \time 4/4
  \key c \major
  \set Staff.midiInstrument = #"acoustic guitar (nylon)"
}

myDiskant = {
  <g c' e'>   4. 8 4. 8 | % C
  <a c' e'>   4. 8 4. 8 | % Am
  <a c' f'>   4. 8 4. 8 | % F
  <g b g'>    4. 8 4. 8 | % G
  \mark "4x"
}

myBass = {
  c4 e b, e  | % C /B
  a,4 e  a,  e  | % Am
  f4  a,  f  a,  | % F
  g,4  d b,  d | % g
}

myPulse = { 
  \repeat volta 4 \lyricmode {
    \override Score.LyricText.color = red
  \set fontSize = #-2 
  "1"8 "."8 "."8 "+"8 
    \override Score.LyricText.color = blue
  "3"8 "."8 "."8 "+"8 
  }
}

% Layout- bzw. Bildausgabe
\score {
  <<
    \new ChordNames {
      \chordmode {
        c2 \once \override ChordName.text = "/B" c:/b a1:m f g
      }
    }
    {
      \new Staff  <<
        \myKey
        \repeat volta 4 
        \myDiskant
        \\
        \repeat volta 4
        \myBass
      >>
    }

 \new Lyrics \unfoldRepeats \myPulse
  
  \new TabStaff {
      \tabFullNotation \repeat volta 4
      <<
        \myDiskant
        \\
        \myBass
      >>
    }
  >>
\layout {
    \context {
      \Lyrics
      \override VerticalAxisGroup.staff-affinity = ##f
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
    \context {
      \Staff
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
  }
}
% Midi
\score {
  <<
    \unfoldRepeats {
      \new Staff  <<
        \myKey
        \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=120\mm
  oddFooterMarkup=##f
  oddHeaderMarkup=##f
  % bookTitleMarkup=##f
  scoreTitleMarkup=##f
}

Rhythmus 88

[Bearbeiten]

\version "2.20.0"
\header {
  title="Rhythmus 88"
  subtitle="im Diskant"
  encoder="mjchael"
}

myKey = {
  \tempo 4 = 80
  \set Score.tempoHideNote = ##t
  \clef "G_8" 
  \time 4/4
  \key c \major
  \set Staff.midiInstrument = #"acoustic guitar (nylon)"
}

myDiskant = {
  <g c' e'> 2 2 | % C
  <a c' e'> 2 2 | % Am
  <a c' f'> 2 2 | % F
  <g b g'>  2 2 | % G
  \mark "4x"
}

myBass = {
  c4 e b, e  | % C /B
  a,4 e  a,  e  | % Am
  a,4  f  a, f | % F
  g,4  d b,  d | % g
}

myPulse = { 
  \repeat volta 4 \lyricmode {
    \override Score.LyricText.color = red
  \set fontSize = #-2 
  "1"8 "."8 "."8 "."8 
    \override Score.LyricText.color = blue
  "3"8 "."8 "."8 "."8 
  }
}

% Layout- bzw. Bildausgabe
\score {
  <<
    \new ChordNames {
      \chordmode {
        c2 \once \override ChordName.text = "/B" c:/b a1:m 
\once \override ChordName.text = "F/A" f g
      }
    }
    {
      \new Staff  <<
        \myKey
        \repeat volta 4 
        \myDiskant
        \\
        \repeat volta 4
        \myBass
      >>
    }

 \new Lyrics \unfoldRepeats \myPulse
  
  \new TabStaff {
      \tabFullNotation \repeat volta 4
      <<
        \myDiskant
        \\
        \myBass
      >>
    }
  >>
\layout {
    \context {
      \Lyrics
      \override VerticalAxisGroup.staff-affinity = ##f
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
    \context {
      \Staff
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
  }
}
% Midi
\score {
  <<
    \unfoldRepeats {
      \new Staff  <<
        \myKey
        \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=120\mm
  oddFooterMarkup=##f
  oddHeaderMarkup=##f
  % bookTitleMarkup=##f
  scoreTitleMarkup=##f
}

Hier einmal explizit zuerst mit der leeren A-Saite beim F. Wenn es etwas schneller beim Lied gepickt wird, bemerkt kaum jemand den Unterschied.

Rhythmus 77

[Bearbeiten]

\version "2.20.0"
\header {
  title="Rhythmus 77"
  subtitle="im Diskant"
  encoder="mjchael"
}

myKey = {
  \tempo 4 = 80
  \set Score.tempoHideNote = ##t
  \clef "G_8" 
  \time 4/4
  \key g \major
  \set Staff.midiInstrument = #"acoustic guitar (nylon)"
}

myDiskant = {
  r8 <g b e'>8 8 8 
  r8 <g b e'>8 8 8 | % Em
  r8 <a d' fis'>8 8 8 
  r8 <a d' fis'>8 8 8 | % D
  r8 <g c' e'>8 8 8 
  r8 <g c' e'>8 8 8 | % C
  r8 <a b fis'>8 8 8 
  r8 <a b fis'>8 8 8 | % B7
  \mark "4x"
}

myBass = {
  e,4 e b, e  | % Em
  a,4 d  a,  d  | % D
  c4  e  c e | % C
  b,4  dis b,  dis | % B7
}

myPulse = { 
  \repeat volta 4 \lyricmode {
    \override Score.LyricText.color = red
  \set fontSize = #-2 
  "."8 "+"8 "2"8 "+"8 
    \override Score.LyricText.color = blue
  "."8 "+"8 "4"8 "+"8 
  }
}

% Layout- bzw. Bildausgabe
\score {
  <<
    \new ChordNames {
      \chordmode {
        e1:m
% \once \override ChordName.text = "/B" c:/b 
       d c b:7
      }
    }
    {
      \new Staff  <<
        \myKey
        \repeat volta 4 
        \myDiskant
        \\
        \repeat volta 4
        \myBass
      >>
    }

 \new Lyrics \unfoldRepeats \myPulse
  
  \new TabStaff {
      \tabFullNotation \repeat volta 4
      <<
        \myDiskant
        \\
        \myBass
      >>
    }
  >>
\layout {
    \context {
      \Lyrics
      \override VerticalAxisGroup.staff-affinity = ##f
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
    \context {
      \Staff
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
  }
}
% Midi
\score {
  <<
    \unfoldRepeats {
      \new Staff  <<
        \myKey
        \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=120\mm
  oddFooterMarkup=##f
  oddHeaderMarkup=##f
  % bookTitleMarkup=##f
  scoreTitleMarkup=##f
}

Rhythmus 66

[Bearbeiten]

Bei Picking-Pattern versucht man oft Pausen zu vermeiden . Häufiger versucht man stattdessen die Pause mit dem Basston zu verschmelzen. Wie die Pause eigentlich aussehen müsste, siehst du im letzten Takt.

Man geht einen Kompromiss ein zwischen der Werkstreue, wo Melodie und Bass eigenständig betrachtet werden und sauber voneinander getrennt werden und der leichten Lesbarkeit.


\version "2.20.0"
\header {
  title="Rhythmus 66"
  subtitle="im Diskant"
  encoder="mjchael"
}

myKey = {
  \tempo 4 = 80
  \set Score.tempoHideNote = ##t
  \clef "G_8" 
  \time 4/4
  \key g \major
  \set Staff.midiInstrument = #"acoustic guitar (nylon)"
}

myDiskant = {
  e,8 <g b e'>8 4 
  b,8 <g b e'>8 4 | % Em
  a,8 <a d' fis'>8 4 
  a,8 <a d' fis'>8 4 | % D
  c8 <g c' e'>8 4 
  c8 <g c' e'>8 4 | % C
  r8 <a b fis'>8 4 
  r8 <a b fis'>8 4 | % B7
  \mark "4x"
}

myBass = {
  e,4 e b, e  | % Em
  a,4 d  a,  d  | % D
  c4  e  c e | % C
  b,4  dis b,  dis | % B7
}

myPulse = { 
  \repeat volta 4 \lyricmode {
    \override Score.LyricText.color = red
  \set fontSize = #-2 
  "."8 "+"8 "2"8 "."8 
    \override Score.LyricText.color = blue
  "."8 "+"8 "4"8 "."8 
  }
}

% Layout- bzw. Bildausgabe
\score {
  <<
    \new ChordNames {
      \chordmode {
        e1:m
% \once \override ChordName.text = "/B" c:/b 
       d c b:7
      }
    }
    {
      \new Staff  <<
        \myKey
        \repeat volta 4 
        \myDiskant
        \\
        \repeat volta 4
        \myBass
      >>
    }

 \new Lyrics \unfoldRepeats \myPulse
  
  \new TabStaff {
      \tabFullNotation \repeat volta 4
      <<
        \myDiskant
        \\
        \myBass
      >>
    }
  >>
\layout {
    \context {
      \Lyrics
      \override VerticalAxisGroup.staff-affinity = ##f
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
    \context {
      \Staff
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
  }
}
% Midi
\score {
  <<
    \unfoldRepeats {
      \new Staff  <<
        \myKey
        \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=120\mm
  oddFooterMarkup=##f
  oddHeaderMarkup=##f
  % bookTitleMarkup=##f
  scoreTitleMarkup=##f
}

Rhythmus 55

[Bearbeiten]

\version "2.20.0"
\header {
  title="Rhythmus 55"
  subtitle="im Diskant"
  encoder="mjchael"
}

myKey = {
  \tempo 4 = 80
  \set Score.tempoHideNote = ##t
  \clef "G_8" 
  \time 4/4
  \key g \major
  \set Staff.midiInstrument = #"acoustic guitar (nylon)"
}

myDiskant = {
  e,8 <g b e'>4 8 
  b,8 <g b e'>4 8 | % Em
  a,8 <a d' fis'>4 8 
  a,8 <a d' fis'>4 8 | % D
  c8 <g c' e'>4 8 
  c8 <g c' e'>4 8 | % C
  r8 <a b fis'>4 8 
  r8 <a b fis'>4 8 | % B7
  \mark "4x"
}

myBass = {
  e,4 e b, e  | % Em
  a,4 d  a,  d  | % D
  c4  e  c e | % C
  b,4  dis b,  dis | % B7
}

myPulse = { 
  \repeat volta 4 \lyricmode {
    \override Score.LyricText.color = red
  \set fontSize = #-2 
  "."8 "+"8 "."8 "+"8 
    \override Score.LyricText.color = blue
  "."8 "+"8 "."8 "+"8 
  }
}

% Layout- bzw. Bildausgabe
\score {
  <<
    \new ChordNames {
      \chordmode {
        e1:m
% \once \override ChordName.text = "/B" c:/b 
       d c b:7
      }
    }
    {
      \new Staff  <<
        \myKey
        \repeat volta 4 
        \myDiskant
        \\
        \repeat volta 4
        \myBass
      >>
    }

 \new Lyrics \unfoldRepeats \myPulse
  
  \new TabStaff {
      \tabFullNotation \repeat volta 4
      <<
        \myDiskant
        \\
        \myBass
      >>
    }
  >>
\layout {
    \context {
      \Lyrics
      \override VerticalAxisGroup.staff-affinity = ##f
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
    \context {
      \Staff
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
  }
}
% Midi
\score {
  <<
    \unfoldRepeats {
      \new Staff  <<
        \myKey
        \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=120\mm
  oddFooterMarkup=##f
  oddHeaderMarkup=##f
  % bookTitleMarkup=##f
  scoreTitleMarkup=##f
}

Rhythmus 44

[Bearbeiten]

\version "2.20.0"
\header {
  title="Rhythmus 44"
  subtitle="im Diskant"
  encoder="mjchael"
}

myKey = {
  \tempo 4 = 80
  \set Score.tempoHideNote = ##t
  \clef "G_8" 
  \time 4/4
  \key g \major
  \set Staff.midiInstrument = #"acoustic guitar (nylon)"
}

myDiskant = {
  e,8 <g b e'>4. 
  b,8 <g b e'>4. | % Em
  a,8 <a d' fis'>4.  
  a,8 <a d' fis'>4. | % D
  c8 <g c' e'>4.
  c8 <g c' e'>4. | % C
  r8 <a b fis'>4. 
  r8 <a b fis'>4. | % B7
  \mark "4x"
}

myBass = {
  e,4 e b, e  | % Em
  a,4 d  a,  d  | % D
  c4  e  c e | % C
  b,4  dis b,  dis | % B7
}

myPulse = { 
  \repeat volta 4 \lyricmode {
    \override Score.LyricText.color = red
  \set fontSize = #-2 
  "."8 "+"8 "."8 "."8 
    \override Score.LyricText.color = blue
  "."8 "+"8 "."8 "."8 
  }
}

% Layout- bzw. Bildausgabe
\score {
  <<
    \new ChordNames {
      \chordmode {
        e1:m
% \once \override ChordName.text = "/B" c:/b 
       d c b:7
      }
    }
    {
      \new Staff  <<
        \myKey
        \repeat volta 4 
        \myDiskant
        \\
        \repeat volta 4
        \myBass
      >>
    }

 \new Lyrics \unfoldRepeats \myPulse
  
  \new TabStaff {
      \tabFullNotation \repeat volta 4
      <<
        \myDiskant
        \\
        \myBass
      >>
    }
  >>
\layout {
    \context {
      \Lyrics
      \override VerticalAxisGroup.staff-affinity = ##f
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
    \context {
      \Staff
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
  }
}
% Midi
\score {
  <<
    \unfoldRepeats {
      \new Staff  <<
        \myKey
        \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=120\mm
  oddFooterMarkup=##f
  oddHeaderMarkup=##f
  % bookTitleMarkup=##f
  scoreTitleMarkup=##f
}

Rhythmus 33

[Bearbeiten]

\version "2.20.0"
\header {
  title="Rhythmus 33"
  subtitle="im Diskant"
  encoder="mjchael"
}

myKey = {
  \tempo 4 = 80
  \set Score.tempoHideNote = ##t
  \clef "G_8" 
  \time 4/4
  \key g \major
  \set Staff.midiInstrument = #"acoustic guitar (nylon)"
}

myDiskant = {
  g,4   <g b g'>8 8 
  b,4    <g b g'>8 8  | % G
  fis,4 <a d' fis'>8 8  
  a,4   <a d' fis'>8 8 | % D
  e,4   <g b e'>8 8 
  b,4    <g b e'>8 8  | % Em
  c4 <g c' e'>8 8
  c4 <g c' e'>8 8 | % C
  \mark "4x"
}

myBass = {
  g,4 d b, d  | % Em
  fis,4 d  a,  d  | % D
  e,4 e b, e  | % Em
  c4  e  c e | % C
}

myPulse = { 
  \repeat volta 4 \lyricmode {
    \override Score.LyricText.color = red
  \set fontSize = #-2 
  "."8 "."8 "2"8 "+"8 
    \override Score.LyricText.color = blue
  "."8 "."8 "4"8 "+"8 
  }
}

% Layout- bzw. Bildausgabe
\score {
  <<
    \new ChordNames {
      \chordmode {
        g1
% \once \override ChordName.text = "/B" c:/b 
       d:/fis e:m c
      }
    }
    {
      \new Staff  <<
        \myKey
        \repeat volta 4 
        \myDiskant
        \\
        \repeat volta 4
        \myBass
      >>
    }

 \new Lyrics \unfoldRepeats \myPulse
  
  \new TabStaff {
      \tabFullNotation \repeat volta 4
      <<
        \myDiskant
        \\
        \myBass
      >>
    }
  >>
\layout {
    \context {
      \Lyrics
      \override VerticalAxisGroup.staff-affinity = ##f
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
    \context {
      \Staff
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
  }
}
% Midi
\score {
  <<
    \unfoldRepeats {
      \new Staff  <<
        \myKey
        \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=120\mm
  oddFooterMarkup=##f
  oddHeaderMarkup=##f
  % bookTitleMarkup=##f
  scoreTitleMarkup=##f
}

Rhythmus 22

[Bearbeiten]

\version "2.20.0"
\header {
  title="Rhythmus 22"
  subtitle="im Diskant"
  encoder="mjchael"
}

myKey = {
  \tempo 4 = 80
  \set Score.tempoHideNote = ##t
  \clef "G_8" 
  \time 4/4
  \key g \major
  \set Staff.midiInstrument = #"acoustic guitar (nylon)"
}

myDiskant = {
  g,4   <g b g'>4 
  b,4    <g b g'>4  | % G
  fis,4 <a d' fis'>4  
  a,4   <a d' fis'>4 | % D
  e,4   <g b e'>4
  b,4    <g b e'>4  | % Em
  c4 <g c' e'>4
  c4 <g c' e'>4 | % C
  \mark "4x"
}

myBass = {
  g,4 d b, d  | % Em
  fis,4 d  a,  d  | % D
  e,4 e b, e  | % Em
  c4  e  c e | % C
}

myPulse = { 
  \repeat volta 4 \lyricmode {
    \override Score.LyricText.color = red
  \set fontSize = #-2 
  "."8 "."8 "2"8 "."8 
    \override Score.LyricText.color = blue
  "."8 "."8 "4"8 "."8 
  }
}

% Layout- bzw. Bildausgabe
\score {
  <<
    \new ChordNames {
      \chordmode {
        g1
% \once \override ChordName.text = "/B" c:/b 
       d:/fis e:m c
      }
    }
    {
      \new Staff  <<
        \myKey
        \repeat volta 4 
        \myDiskant
        \\
        \repeat volta 4
        \myBass
      >>
    }

 \new Lyrics \unfoldRepeats \myPulse
  
  \new TabStaff {
      \tabFullNotation \repeat volta 4
      <<
        \myDiskant
        \\
        \myBass
      >>
    }
  >>
\layout {
    \context {
      \Lyrics
      \override VerticalAxisGroup.staff-affinity = ##f
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
    \context {
      \Staff
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
  }
}
% Midi
\score {
  <<
    \unfoldRepeats {
      \new Staff  <<
        \myKey
        \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=120\mm
  oddFooterMarkup=##f
  oddHeaderMarkup=##f
  % bookTitleMarkup=##f
  scoreTitleMarkup=##f
}

Rhythmus 11

[Bearbeiten]

\version "2.20.0"
\header {
  title="Rhythmus 33"
  subtitle="im Diskant"
  encoder="mjchael"
}

myKey = {
  \tempo 4 = 80
  \set Score.tempoHideNote = ##t
  \clef "G_8" 
  \time 4/4
  \key g \major
  \set Staff.midiInstrument = #"acoustic guitar (nylon)"
}

myDiskant = {
  g,4   d8 <g b g'>  
  b,4   d8 <g b g'>   | % G
  fis,4 d8 <a d' fis'>   
  a,4   d8 <a d' fis'>  | % D
  e,4   e8 <g b e'>  
  b,4   e8 <g b e'>  | % Em
  c4    e8 <g c' e'>
  c4    e8 <g c' e'> | % C
  \mark "4x"
}

myBass = {
  g,4 d b, d  | % Em
  fis,4 d  a,  d  | % D
  e,4 e b, e  | % Em
  c4  e  c e | % C
}

myPulse = { 
  \repeat volta 4 \lyricmode {
    \override Score.LyricText.color = red
  \set fontSize = #-2 
  "."8 "."8 "."8 "+"8 
    \override Score.LyricText.color = blue
  "."8 "."8 "."8 "+"8 
  }
}

% Layout- bzw. Bildausgabe
\score {
  <<
    \new ChordNames {
      \chordmode {
        g1
% \once \override ChordName.text = "/B" c:/b 
       d:/fis e:m c
      }
    }
    {
      \new Staff  <<
        \myKey
        \repeat volta 4 
        \myDiskant
        \\
        \repeat volta 4
        \myBass
      >>
    }

 \new Lyrics \unfoldRepeats \myPulse
  
  \new TabStaff {
      \tabFullNotation \repeat volta 4
      <<
        \myDiskant
        \\
        \myBass
      >>
    }
  >>
\layout {
    \context {
      \Lyrics
      \override VerticalAxisGroup.staff-affinity = ##f
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
    \context {
      \Staff
      \override VerticalAxisGroup.staff-staff-spacing =
        #'((basic-distance . 0)
	   (minimum-distance . 2)
	   (padding . 2))
    }
  }
}
% Midi
\score {
  <<
    \unfoldRepeats {
      \new Staff  <<
        \myKey
        \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=120\mm
  oddFooterMarkup=##f
  oddHeaderMarkup=##f
  % bookTitleMarkup=##f
  scoreTitleMarkup=##f
}