Gitarre: Oh When The Saints durch alle Tonarten

Aus Wikibooks

Oh when the saints[Bearbeiten]

Dieser Abschnitt ist noch im Entstehen und noch nicht offizieller Bestandteil des Buchs. Gib den Autoren Zeit, den Inhalt anzupassen!


In C[Bearbeiten]


\version "2.20.0"
\header {
 title = "Oh when the saints"
 % subtitle = "MeinSubtitle"
 % poet = "Texter"
 composer = "trad."
 % arranger = "arr: ccbysa: Wikibooks (mjchael)"
}

myKey = {
  \clef "treble"
  \time 4/4
  \tempo 4 = 100
  %%Tempo ausblenden
  \set Score.tempoHideNote = ##t
  \key c\major
}

%% Akkorde

myChords = \chordmode {
  %% 4/4-Schlag doppelt so schnell
  %% 1 . 2 . 3 . 4 . 1 . 2 . 3 . 4 . 
  \set Staff.midiInstrument = #"acoustic guitar (nylon)"
  %% Akkorde nur beim Wechsel notieren
  \set chordChanges = ##t
  \partial 2 g,,8:7 g,:7 g,,8:7 g,:7 
  c,8 c c, c c,8 c c, c | 
  c,8 c c, c c,8 c c, c |
  c,8 c c, c c,8 c c, c |
  g,, g, g,, g,
  g,,8:7 g,:7 g,,:7 g,:7 |
  c,8 c c, c 
  c,8:7 c:7 c,:7 c:7 | 
  f,,8 f, f,, f, 
  f,,8:m f,:m f,,:m f,:m |
  c,8 c a,,:m a,:m
  d,8:m7 d:m7 g,,:7 g,:7 |  
  c,8 c f,, f, 
  c,8 c
}

myMelody = \relative c'' {
  \myKey
  \set Staff.midiInstrument = #"trombone"
  \relative c'{ 
    \partial 2 r8 c8 e f | 
    g2 r8 c,8 e f | g2 r8 c,8 e f |
    g4 e c e | d2   r4 e8( d) | 
    c4. c8 e4 g8 g | g f4. r4 e8 f | 
    g4 e c d | c2   \bar "|."
  }
}

myLyrics = \lyricmode {
  \set stanza = "1."
  Oh when the saints 
  go march -- ing in,
  oh when the saints 
  go march -- ing in,
  I want to be in that numb -- er,
  when the saints go march -- ing in.


}
\score {
  <<
    \new ChordNames { \myChords 
    }
    \new Voice = "mySong" { \myMelody }
    \new Lyrics \lyricsto "mySong" { \myLyrics }
  % \new TabStaff { \myChords } %% Check 
  >>
  \layout { }
}
\score {
  <<
    \new ChordNames { \myChords 
        
    }
    \new Voice = "mySong" { \myMelody }
    \new Lyrics \lyricsto "mySong" { \myLyrics }
  % \new TabStaff { \myChords } %% Check 
  >>
  \midi { }
}

%% unterdrückt im raw="1"-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
}

1)
Oh, when the [C]saints go marching in
Oh, when the saints [Am]go [Dm7]marching [G]in [G7]
Oh Lord I [C]want to [C7]be in that [F]number [Fm]
When the [C]saints [Am]go [Dm7]mar-[G7]ching [C]in.[C] [Am] [A7]

In D[Bearbeiten]


\version "2.20.0"
\header {
 title = "Oh when the saints"
 % subtitle = "MeinSubtitle"
 % poet = "Texter"
 composer = "trad."
 % arranger = "arr: ccbysa: Wikibooks (mjchael)"
}

myKey = {
  \clef "treble"
  \time 4/4
  \tempo 4 = 100
  %%Tempo ausblenden
  \set Score.tempoHideNote = ##t
  \key d\major
}

%% Akkorde
%% 4/4-Schlag doppelt so schnell
%% 1 . 2 . 3 . 4 . 1 . 2 . 3 . 4 . 
myD  = \chordmode { d,8 d d,  d  }
myA  = \chordmode { a,,8 a, a,, a, }
myG  = \chordmode { g,,8 g, g,, g, }

myChords = \chordmode {
  \set Staff.midiInstrument = #"acoustic guitar (nylon)"
  %% Akkorde nur beim Wechsel notieren
  \set chordChanges = ##t
  \partial 2. s2
  \myD \myD \myD \myD
   \myD \myD \myA \myA
   \myD \myD \myG \myG 
   \myD \myA \myD d,2
}

myMelody = \relative c'' {
  \myKey
  \set Staff.midiInstrument = #"trombone"
  \relative c'{ 
    \partial 2 r8 d8 fis g | a2 r8 d,8 fis g | a2
    r8 d,8 fis g | a4 fis d fis | e2   r4 fis8( e) | d4. d8 fis4 a8 8 | a8 g4.
    r4 fis8 g | a4 fis d e | d2   \bar "|."
  }
}

myLyrics = \lyricmode {
  \set stanza = "1."
  Oh when the saints 
  go march -- ing in,
  oh when the saints 
  go march -- ing in,
  I want to be in that numb -- er,
  when the saints go march -- ing in.

}
\score {
  <<
    \new ChordNames { \myChords 
    }
    \new Voice = "mySong" { \myMelody }
    \new Lyrics \lyricsto "mySong" { \myLyrics }
  % \new TabStaff { \myChords } %% Check 
  >>
  \layout { }
}
\score {
  <<
    \new ChordNames { \myChords 
        
    }
    \new Voice = "mySong" { \myMelody }
    \new Lyrics \lyricsto "mySong" { \myLyrics }
  % \new TabStaff { \myChords } %% Check 
  >>
  \midi { }
}

%% unterdrückt im raw="1"-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
}

2) Oh, when the drums begin to bang...

In E[Bearbeiten]

3) Oh, when the stars fall from the sky...

4) Oh, when the moon turns red with blood... 5) Oh, when the trumpet sounds its call... 6) Oh, when the horsemen begin to ride... 7) Oh, when the saints go marching in... </poem>

Der Autor ist vor über siebzig Jahren verstorben. Daher bestehen keine Urheberrechtsansprüche mehr an diesem Werk.