Diskussion:Liederbuch/ As Time Goes By

Seiteninhalte werden in anderen Sprachen nicht unterstützt.
Aus Wikibooks

Lilypond Quelltext[Bearbeiten]

%<score sound="1" raw="1">
\version "2.20.0"
\header {
  title = "As Time Goes By"
  subtitle = "easy to play"
  composer = "T+M: Herman Hupfeld"
  arranger = "arr: ccbysa Wikibooks (Mjchael)"
}
% Akkorde
akkorde = \chordmode {
  \germanChords
  \set Staff.midiInstrument = #"acoustic guitar (nylon)"
  % Akkorde nur beim Wechsel Notieren
  % ggf. \once \set chordChanges = ##f
  \set chordChanges = ##t
  \partial 4 a,,4:m 
  d,4:m d:m g,,:7 g,:7 % 1
  e,:m e:m g,,:7 g,:7 % 2
  c, c a,,:m a,:m % 3
  d,:m d:m d,:7 d:7 % 4
  g,,:sus4 g,:sus4 g,,:7 g,:7 % 5
  c,4 c  d,:m7 g,:7 % 6
  c, c a,,:m a,:m % 7
 d,:m7 d:m7  g,,:sus4 g,:7 %8

  d,4:m d:m g,,:7 g,:7
  e,:m e:m g,,:7 g,:7
  c, c a,,:m a,:m
  d,:m d:m d,:7 d:7
  g,,:sus4 g,:sus4 g,,:7 g,:7
  c, c  d,:m7 g,:7
  c, c a,,:m a,:m
  c, c c,:7 c:7
  
  f,,4 f,  f,, f,  a,,:7 a,:7 a,,:7 a,:7 
  d,:m d:m d,:m d:m   d,:7 d:7 d,:7 d:7 
  a,,:m a,:m a,,:m a,:m   c, c d,:7 d:7 
  g,,:7 g,:7 d,:m7 d:m7 g,,:7 g,:7 g,,:7 a,:m7 
  
    d,4:m d:m g,,:7 g,:7
  e,:m e:m g,,:7 g,:7
  c, c a,,:m a,:m
  d,:m d:m d,:7 d:7
  g,,:sus4 g,:sus4 g,,:7 g,:7
  c, c  d,:m7 g,:7
  c, c c, c
}

melodie = \relative c' {
  \clef "treble"
  \time 4/4
  \tempo 4 = 90
  \key c\major
  \set Staff.midiInstrument = #"trombone"
  \partial 4 r8 e8
  f8. e16 d8. c16 d4. e8
  g8. f16 e8. d16 f4. g8
  c8. b16 a8. g16 a2
  r2 r4 b4
  d8. c16 b8. a16 b4 c g4. g8 c,4 d e4~ 2  r4 
  
  r2 r4. e8
  f8. e16 d8. c16 d4. e8
  g8. f16 e8. d16 f4. g8
  c8. b16 a8. g16 a2
  r2 r4 b4
  d8. c16 b8. a16 b4 c g4. g8 c,4 d e4~ e2 r4 r1
  \bar "||"
  \break
  c8 d c a'~ a4 a a8 bes a gis a2
  d,8 e d a'~ a4 a a8 bes a gis a2
  e8 f e c'~c4. b8 c8 b c b d4 b 
  a a e4. e8 g2. e4
  \bar "||"
  \break
  f8. e16 d8. c16 d4 d8 e8
  g8. f16 e8. d16 f4 f8 g8
  c8. b16 a8. g16 a2
  r2 r4 b4
  d8. c16 b8. a16 b4 c g4 g8 g8 c,4 d e4~ 2  r4 

  \bar "|."
}

text = \lyricmode {
  \set stanza = "1."
  You must re -- mem -- ber this
  a kiss is just a kiss,
  a sigh is just a sight;
  the fun -- da -- men -- tal thinks ap -- ply,
  as time goes by.

  And when two lov -- ers woo,
  they still say, 'I love you,'
  On that you can re -- ly,
  No mat -- ter what the fu -- tuer brings, as time goes by.

  Moon -- light and love songs nev -- er out of date,
  hearts foll of pas -- sion, jeal -- ous -- y and hate;
  wo -- man needs man and man must have his mate, that no one can de -- ny.

  it's still the same old sto --ry, a fight for love and glo -- ry,
  a case of do or die!
  The world will al -- ways wel -- come lov -- ers,
  as time goes by.
}

\score {
  <<
    \new ChordNames { \akkorde }
    \new Voice = "Lied" { \melodie }
    \new Lyrics \lyricsto "Lied" { \text }
    % \new Voice = "begleitung" { \akkorde }
  >>
  \layout { }
}

\score {
  <<
    \new ChordNames { \akkorde }
    \new Voice = "Lied" { \melodie }
    \new Lyrics \lyricsto "Lied" { \text }
    \new Voice = "begleitung" { \akkorde }
  >>
  \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
}
%</score>

mjchael 15:58, 10. Jun. 2023 (CEST)[Beantworten]