Zum Inhalt springen

Benutzer:Mjchael/Werkstatt: Unterschied zwischen den Versionen

Aus Wikibooks
Inhalt gelöscht Inhalt hinzugefügt
Zeile 62: Zeile 62:
\new ChordNames {
\new ChordNames {
\chordmode {
\chordmode {
\set chordChanges = ##t
d1 e:m g d \break
d1 e:m g d \break
d1 e:m g d \break
d1 e:m g d \break

Version vom 7. September 2024, 11:16 Uhr

   Mjchael        Projekte        Werkstatt        Hilfen        Sammlungen      

Akut

To-Do:

Cups (When I'm Gone) by Anna Kendrick
Hello by Adele
Just The Way You Are by Bruno Mars
Someone You Loved by Lewis Capaldi

As Tears Go By (Rolling Stones)

Begleitvorschlag

\version "2.20.0"
\header {
  title="Basis-Pattern in G"
  encoder="mjchael"
}
%Diskant- bzw. Melodiesaiten
Diskant = {
  d8  d' a fis'   d    d' a  fis' | % D
  e,8 b  g e'     e,   b  g  e'   | % Em
  g,8 d   b g'     g,8 d   b g    | % G
  a,8  cis' a e'  a,8  cis' a e'  | % A
   d8  d' a fis'   d    d' a  fis' | % D
  e,8 b  g e'     e,   b  g  e'   | % Em
  g,8 d   b g'     g,8 d   b g    | % G
  a,8  cis' a e'  a,8  cis' a e'  | % A
  g,8 d   b g'     g,8 d   b g    | % G
  a,8  cis' a e'  a,8  cis' a e'  | % A
   d8  d' a fis'   d    d' a  fis' | % D
   d8  d' a fis'   d    d' a  fis' | % D
  g,8 d   b g'     g,8 d   b g    | % G
  g,8 d   b g'     g,8 d   b g    | % G
  a,8  cis' a e'  a,8  cis' a e'  | % A
  a,8  cis' a e'  a,8  cis' a e'  | % A
  }
%Basssaiten, die hier nur mit dem Daumen gespielt werden.
Bass = {
  g,4 g  fis, g  | % 1
  e,4 g  b,   g  | % 2
  c4  g  e    g  | % 3
  d4  a  a,   a  | % 4
}
% Layout- bzw. Bildausgabe
\score {
  <<
    \new ChordNames {
      \chordmode {
       \set chordChanges = ##t
        d1 e:m g d \break
        d1 e:m g d \break
        g a d2. a4 b2:m b:m/a \break
        g1 g a a:7
      }
    }
    {
      %Noten
      \new Staff  <<
        \tempo 4 = 120
        %Tempo ausblenden
        \set Score.tempoHideNote = ##t
        \time 4/4
        \key g \major
        \set Staff.midiInstrument = #"acoustic guitar (nylon)"
        \clef "G_8" \repeat volta 4
        % Balken nur über viertel Noten,  nicht über halbe Noten
        \set Timing.beamExceptions = #'()
        \set Timing.baseMoment = #(ly:make-moment 1/4)
        \set Timing.beatStructure = #'(1 1 1 1)
        % Noten im Diskant
        \Diskant
        \\
        % Noten im Bass - beachte: Wiederholungszeichen ist für Midi notwendig!
        \repeat volta 4
        \Bass
      >>
    }
    % Tabulatur
    \new TabStaff {
      \tabFullNotation \repeat volta 4
      <<
        % Tabulatur im Diskant
        \Diskant
        \\
        % Tabulatur im Bass
        \Bass
      >>
    }
  >>
  \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
        \Diskant
        \\
        \repeat volta 4
        \Bass
      >>
    }
  >>
  \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
}

Bonus Balladendiplom


\version "2.20.0"
\header {
  title="Basis-Pattern"
  subtitles="My December (Linking Park)"
  encoder="mjchael"
}
%Diskant- bzw. Melodiesaiten
myDiskant = {
  d8  d' a f'   d d' a f' | % 1 
  c8  c' g e'   c c' g e' | % 1 
  d8  d' a f'   d d' a f' | % 1 
  c8  c' g e'   c c' g e' | % 1 
}
%Basssaiten, die hier nur mit dem Daumen gespielt werden.
myBass = {
  d4 a d a
  c4 g  c g
  d4 a d a
  c4 g  c g 
}
% Layout- bzw. Bildausgabe
\score {
  <<
    \new ChordNames {
      \chordmode {
       d1:m c d1:m c
      }
    }
    {
      %Noten
      \new Staff  <<
        \tempo 4 = 120
        %Tempo ausblenden
        \set Score.tempoHideNote = ##t
        \time 4/4
        \key c \major
        \set Staff.midiInstrument = #"acoustic guitar (nylon)"
        \clef "G_8" \repeat volta 4
        % Balken nur über viertel Noten,  nicht über halbe Noten
        \set Timing.beamExceptions = #'()
        \set Timing.baseMoment = #(ly:make-moment 1/4)
        \set Timing.beatStructure = #'(1 1 1 1)
        % Noten im Diskant
        \myDiskant
        \\
        % Noten im Bass - beachte: Wiederholungszeichen ist für Midi notwendig!
        \repeat volta 4
        \myBass
      >>
    }
    % Tabulatur
    \new TabStaff {
      \tabFullNotation \repeat volta 4
      <<
        % Tabulatur im Diskant
        \myDiskant
        \\
        % Tabulatur im Bass
        \myBass
      >>
    }
  >>
  \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
}

Tom Dooley to Tabs


\version "2.20.0"
\header {
 title = "Tom Dooley"
 % 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 g\major
}

%% Akkorde
%% 4/4-Schlag 
%% 1 . 2 . 3 . 4 .
myG  = \chordmode { g,,4 g,8 4 8 4 }
myGAm = \chordmode { g,,4 g,8 a,4:m a,8:m a,4:m}
myD  = \chordmode { d,4 d8 4 8 4 }
myDsept  = \chordmode { d,4:7 d8:7 d4:7 d8:7 d4:7 }
myAm  = \chordmode { a,,4:m a,8:m a,4:m a,8:m a,4:m }


myChords = \chordmode {
  \set Staff.midiInstrument = #"acoustic guitar (nylon)"
  %% Akkorde nur beim Wechsel notieren
  \set chordChanges = ##t
  % \partial 4 s4
  \myG \myG  \myGAm \myD
  \myAm \myD \myDsept \myG 
  g,,1 %Schlusston
}

myMelody = \relative c'' {
  \myKey
  \set Staff.midiInstrument = #"trombone"
  \relative c'{ 
    d8 d8( d8) 8 e g4. | b4. b8( b2)|
    d,8 d8~ d8 8 e g4. | a1 |
    d,8 8~ 8 e4 g4. | a4. a8~ a2|
    a8 a8~ a8 b8 a4 e4 | g1
    \bar "|."
  }
}

myLyrics = \lyricmode {

  \set stanza = "1."
    Hang down your head, Tom Doo -- ley.  
    Hang down your head and cry
    Killed poor Lau -- ra Fos -- ter. 
    You know you're bound to die.

}

\score {

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

%% 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
}

Von G nach C


\version "2.20.0"
\header {
 title = "Tom Dooley"
 % 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
%% Lagerfeuer-Schlag 
%% 1 . 2 + . + 4 .
myC  = \chordmode { c,4 c8 4 8 4 }
myCDm = \chordmode { c,4 c8 d4:m d8:m d4:m}
myG  = \chordmode { g,,4 g,8 4 8 4 }
myGsept  = \chordmode { g,,4:7 g,8:7 g,4:7 g,8:7 g,4:7 }
myDm  = \chordmode { d,4:m d8:m d4:m d8:m d4:m }

myChords = \chordmode {
  \set Staff.midiInstrument = #"acoustic guitar (nylon)"
  %% Akkorde nur beim Wechsel notieren
  \set chordChanges = ##t
  % \partial 4 s4
  \myC \myC  \myCDm \myG
  \myDm \myG \myGsept \myC 
  c,1 %Schlusston
}

myMelody = \relative c'' {
  \myKey
  \set Staff.midiInstrument = #"trombone"
  g8 g8( g8) 8 a c4. | e4. e8( e2)|
  g,8 g8~ g8 8 a c4. | d1 |
  g,8 8~ 8 a4 c4. | d4. d8~ d2|
  d8 d8~ d8 e8 d4 a4 | c1
  \bar "|." 
}

myLyrics = \lyricmode {
  \set stanza = "1."
  Hang down your head, Tom Doo -- ley.  
  Hang down your head and cry
  Killed poor Lau -- ra Fos -- ter. 
  You know you're bound to die.
}

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

%% 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
}

Von G nach C in den Bass


\version "2.20.0"
\header {
 title = "Tom Dooley"
 % 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
%% Lagerfeuer-Schlag 
%% 1 . 2 + . + 4 .
myC  = \chordmode { c,4 c8 4 8 4 }
myCDm = \chordmode { c,4 c8 d4:m d8:m d4:m}
myG  = \chordmode { g,,4 g,8 4 8 4 }
myGsept  = \chordmode { g,,4:7 g,8:7 g,4:7 g,8:7 g,4:7 }
myDm  = \chordmode { d,4:m d8:m d4:m d8:m d4:m }

myChords = \chordmode {
  \set Staff.midiInstrument = #"acoustic guitar (nylon)"
  %% Akkorde nur beim Wechsel notieren
  \set chordChanges = ##t
  % \partial 4 s4
  \myC \myC  \myCDm \myG
  \myDm \myG \myGsept \myC 
  c,1 %Schlusston
}

myMelody = \relative c' {
  \myKey
  \set Staff.midiInstrument = #"trombone"
  g8 g8( g8) 8 a c4. | e4. e8( e2)|
  g,8 g8~ g8 8 a c4. | d1 |
  g,8 8~ 8 a4 c4. | d4. d8~ d2|
  d8 d8~ d8 e8 d4 a4 | c1
  \bar "|." 
}

myLyrics = \lyricmode {
  \set stanza = "1."
  Hang down your head, Tom Doo -- ley.  
  Hang down your head and cry
  Killed poor Lau -- ra Fos -- ter. 
  You know you're bound to die.
}

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

%% 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
}

bon G nach D


\version "2.20.0"
\header {
 title = "Tom Dooley"
 % 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 g\major
}

%% Akkorde
%% 4/4-Schlag 
%% 1 . 2 . 3 . 4 .
myG  = \chordmode { g,,4 g,8 4 8 4 }
myGAm = \chordmode { g,,4 g,8 a,4:m a,8:m a,4:m}
myD  = \chordmode { d,4 d8 4 8 4 }
myDsept  = \chordmode { d,4:7 d8:7 d4:7 d8:7 d4:7 }
myAm  = \chordmode { a,,4:m a,8:m a,4:m a,8:m a,4:m }


myChords = \chordmode {
  \set Staff.midiInstrument = #"acoustic guitar (nylon)"
  %% Akkorde nur beim Wechsel notieren
  \set chordChanges = ##t
  % \partial 4 s4
  \myG \myG  \myGAm \myD
  \myAm \myD \myDsept \myG 
  g,,1 %Schlusston
}

myMelody = \relative c'' {
  \myKey
  \set Staff.midiInstrument = #"trombone"
  \relative c'{ 
    d8 d8( d8) 8 e g4. | b4. b8( b2)|
    d,8 d8~ d8 8 e g4. | a1 |
    d,8 8~ 8 e4 g4. | a4. a8~ a2|
    a8 a8~ a8 b8 a4 e4 | g1
    \bar "|."
  }
}

myLyrics = \lyricmode {

  \set stanza = "1."
    Hang down your head, Tom Doo -- ley.  
    Hang down your head and cry
    Killed poor Lau -- ra Fos -- ter. 
    You know you're bound to die.

}

\score {

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

%% 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
}

Yes Sir That's my Baby

Charleston (1924) Text: Gus Kahn (*1886 - † 1941) Melodie: Walter Donaldson (*1893 - † 1947) bearbeitet von Mjchael 

Der Protagonist (Mann oder Frau) bestätigt den Gesprächspartnern, nun verlobt zu sein, und läd diese zur Hochzeit ein.


[C] Who's that coming down the [C#dim] street,
[G] who's that looking so petite
[G7] Who's that coming down to meet me [C] here. [Dm7] [G7]

[C] Who's that - you know who I [C#dim] mean?
[G7] Sweetest 'who' you've ever seen
[D7] I [Am7] could [D7] tell [Am7] her
[D7] miles [Am7] a-[D7]way from [G7] here. [Em] [B7] [G7]

[C] Yes, sir, that's my [C#dim] baby,
[G] no, sir, I don't mean maybe
[G7] Yes, sir, that's my baby [C] now. [G7]

[C] Yes, ma'am we've de-[C#dim]cided,
[G] no, ma'am we won't hide it
[G7] Yes ma'am you're invited [C] now.

By the [C7] way, by the [F] way,
when we [D7] reach the preacher I'll [G7] say [G7+5]

[C] Yes, sir, that's my [C#dim] baby,
[G] no, sir, I don't mean maybe
[G7] Yes, sir, that's my baby [C] now.

[C] Well well, 'lookit' that [C#dim] baby,
[G] Do tell, don't say "maybe",
[G7] Hell's bells, won't she cause some [C] row?

Pretty [C7] soon, Pretty [F] soon,
We will [D7] hear that Lohengrin [G7] tune, (I'm sayin')[G7+5]

[C] Who for should she [C#dim] be sir,
[G] No one else but me sir,
[G7] Yes sir, That's my Baby [C] now. [C7]

[C] Yes sir, that's my [C#dim] Baby
[G] Yes sir, I don't mean maybe,
[G7] Yes sir, That's my Baby [C] now

Yes Sir, That's My Baby (Var2)

[C] Yes [Am] sir, [C] that's my [Am] baby
[G7] No [Dm] sir, [G7] don't be [Dm] maybe
[G7] Yes [Am] sir, [G7] that's my [Dm] baby [C] now [G7]

[C] Yes [Am] ma'am, [C] we've de[Am]cided
[G7] No [Dm] ma'am, [G7] we won't [Dm] hide it
[G7] Yes [Am] ma'am, [G7] that's my [Dm] baby [C] now

By the way, [C7] by the [F] way
When we [D7] meet that preacher
I'll [G7] say with [G7sus2] feel[G7]ing

[C] Yes [Am] sir, [C] that's my [Am] baby
[G7] No [Dm] sir, [G7] don't be [Dm] maybe

[G7] Yes [Am] sir, [G7] that's my [Dm] baby [C] now.


Early One Morning

1

[D]Early one morning, just [G]as the sun was [A]rising
I [D]heard a maiden singing, from the [G]va-[A]lley be-[D]low:

Chorus

[A]Oh, don't de-[D]ceive me, [A]Oh never [D]leave me,
[D]How could you [G]use, a [D]poor [A]maiden [D]so?

2

Oh [D]gay is garland, and [G]fresh are the [A]roses,
I've [D]culled from the garden, to [G]bind u-[A]pon thy [D]brow.

3

Re-[D]member the vows, that you [G]made to your [A]Mary
Re-[D]member the bow'r, where you [G]promised [A]to be [D]true.

4

Thus [D]sang the poor maid, her [G]sorrows be[A]wailing,
Thus, [D]sang the poor maid, in the [G]va-[A]lley be-[D]low.

Wild Mountain Thyme

Vorlage:Listen


X: 5
T: Wild Mountain Thyme
R: barndance
M: 4/4
L: 1/8
K: Gmaj
GE|"G"D2 D2 "C"E<G-GA|"G"G6 Bd|"C"e3 e e3 d|"G"Bd-d4 Bd
"C"e4 "G"d3 B|"Em"A<G-G4AB|"Am"c3B A3G|"C"EG-G4 GE|"G"D2 D2 "C"E<G-GA|
"G"G6 Bd|"C"e3 e e3 d|"G"Bd-d4 Bd|"C"e4 "G"d3 B|"Em"A<G-G4AB|
"Am"c3B A3G|"C"EG-G4 GE|"G"D2 D2 "C"E<G-GA|"G"G6|

< !--


\version "2.20.0"
\header {
 title = "Wild Mountain Thyme"
 % subtitle = "MeinSubtitle"
 % poet = "Texter"
 % composer = "Komponist"
 % arranger = "arr: ccbysa: Wikibooks (mjchael)"
}

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

%% Akkorde
%% 4/4-Schlag 
%% 1 . 2 . 3 . 4 .
myD  = \chordmode { d,4  d  d,  d  }
myA  = \chordmode { a,,4 a, a,, a, }
myDA = \chordmode { d,4  d  a,, a, }

myChords = \chordmode {
  \set Staff.midiInstrument = #"acoustic guitar (nylon)"
  %% Akkorde nur beim Wechsel notieren
  \set chordChanges = ##t
  \partial 4 s4
  \myD \myA \myDA  \myD 
  d,1 %Schlusston
}

myMelody = \relative c'' {
  \myKey
  \set Staff.midiInstrument = #"trombone"
  \relative c''{ 
   \partial 4 g8 e
    d4 d e16 g8.~8 a | g2. b8 d | e4. e8 e4. d8 | b d8~2 b8 d | 
% GE|"G"D2 D2 "C"E<G-GA|"G"G6 Bd|"C"e3 e e3 d|"G"Bd-d4 Bd
    e2 d4. b8 | a16 g8.~2 a8 b | c4. b8 a4. g8 |e8 g8~2 g8 e | d4 4 e16 g8.~g8 a
% "C"e4 "G"d3 B|"Em"A<G-G4AB|"Am"c3B A3G     |"C"EG-G4 GE|"G"D2 D2 "C"E<G-GA|
    c4. b8 a4. g8 | e g8~2 8 e | d4 4 e16 g8.~8 a | g2.
% "Am"c3B A3G|"C"EG-G4 GE|"G"D2 D2 "C"E<G-GA|"G"G6| 
    \bar "|."
  }
}

myLyrics = \lyricmode {
  \set stanza = "1."
   Häns -- chen klein | ging al -- lein | in das Haus hin | -- ein. |

}

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

%% 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
}

-->


(also known as "Purple Heather" and "Will Ye Go, Lassie, Go?") is a Scottish/Irish folk song.

1

O the summer time has come
And the trees are sweetly blooming
And wild mountain thyme
Grows around the purple heather.
Will you go, lassie, go?

Chorus

  And we'll all go together,
  To pull wild mountain thyme,
  All around the purple heather.
  Will you go, lassie, go?

2

I will build my love a tower,
By yon clear crystal fountain,
And on it I will pile,
All the flowers of the mountain.
Will you go, lassie, go?

3

I will range through the wilds
And the deep land so dreary
And return with the spoils
To the bower o' my dearie.
Will ye go lassie go ?

4

If my true love she'll not come,
Then I'll surely find another,
To pull wild mountain thyme,
All around the purple heather.
Will you go, lassie, go?

Gallerie von Red_Rooster

Die meisten Gifs und JPG wurden von Red_Rooster hochgeladen. Die müssen nach SVG umgestaltet werden.

Bilder durch SVG ersetzen

Bilder nicht löschen!!!!!!!!! Sie müssen weltweit durch SVG ausgetauscht werden, und dann erst auf den Commons für die Schnelllöschung vorgeschlagen werden, und dann erst dürfen sie entfernt werden. Und das mache ich selbst!

{{duplicate|Crd_Form_C.svg}}
*replaced by [[image:Crd Form C.svg]]
*original is unused or replaced
--~~~~

Spielwiese

Zeichnen und Schreiben

Eigendichtungen

Lieder

Liederbuch/ Pläne und Wünsche

Seitenüberblick

Alle Gitarrenseiten
Alle Liederbuchseiten