Heunt is die Samstagnacht

Zur Navigation springen Zur Suche springen

·  Grafik im SVG-Format


Sopran

sop=
\relative c' {
  \time 3/4
  \key g \major
  d4 h'4. a8 a4 g8[ fis] g4
  d c'4. h8 h4 a8[ gis] a4
  d, g h e d8[ h] g4
  d c' fis, g2 r4-\markup "Fine" \bar "||"
  g h c d c8[ h] a4
  e a4. e8 g4 fis8[ e] d4
  a' h c e8[ d] c[ h] a4
  a c8[ h] g[ e] d2 r4-\markup "D.C. al Fine"
  \bar "|."
}

alt =
\relative c' {
  h4 d4. c8 4 h8[ a] h4
  d a'4. g8 4 fis8[ eis] fis4
  d d g c h8[ g] d4
  c fis d d2 s4
  e4 g g fis a8[ g] fis4
  c c4. 8 d4 d a
  e' g g fis a8[ g] fis4 e e c a2
}

Tenor

ten = \relative c' {
  \key g \major
  \time 3/4
  \clef bass
  g4 g g g g g
  d d'4. 8 d4 d d d h d
  g4 8 d h4 fis d' c h2 r4
  c e e d d d a a a h a8[ g] fis4
  c' e e d d d c a a fis2 r4
}

bas = \relative c' {
  g4 g g g, g g
  d' d4. 8 d4 d d d' h g
  g, g g d' d d g2 s4
  a4 a a d, d d a' a, a d d d
  a' a a d, d d a a a d2
}

Liedtext

firstverse =
\lyricmode {
  %Ô ô å Å
  \set stanza = "1."
  Heunt is die Såms -- tåg -- nåcht, wie mir mei Herz -- erl låcht,
  heunt geht's no lus -- ti zu, heunt kimmt mei Bua.
  Der Dirn, der håb i's gsågt, daß's wånn er kimmt auf d'Nåcht
  daß's jå die Tür guat schmiert, daß's jå nit kirt.
}

strophen =
\markup \fill-line
{
  \null
  \override #'(baseline-skip . 7)

  \left-column {
    \formatAdditionalVerses
    %% additional verses starts with this numbering
    #2
    %% amount of columns
    #1
    \columns-markup-list #4
    \markuplist \fontsize #grosseSchrift {
      "Heunt is der Herr net z'Haus,"
      "d'Frau i am Åcker draußt,"
      "heunt san ma gånz alloan,"
      "heunt liaß si' wås toan."

      "Ållaweil drentan Båch"
      "dålkerter Bua - Juche!"
      "Warum kehrst denn nit her enters Båch"
      "a amål zua - Juche?"
    }
  }
  \null
}

Score

\version "2.19.82"
\language "deutsch"
#(define myTitel "Heunt is die Samstagnacht")

mypoet = \markup {
  \override #'(baseline-skip . 3)
  \left-column {
    "Notensatz: https://lilypond.miraheze.org"
  }
}

mycomposer = \markup {
  \override #'(baseline-skip . 3)
  \right-column {
    "Volkslied"
  }
}

kopf= \header {
  title = \markup \line
  {
    #myTitel
  }
  subtitle = ##f
  subsubtitle = ##f
  poet = #mypoet
  composer = #mycomposer
}

\bookpart {
  \paper {
    score-markup-spacing.basic-distance = 15
    system-system-spacing.basic-distance = 15
    top-markup-spacing.basic-distance = 1
    top-system-spacing.basic-distance = 1
    bottom-margin = 1
  }
  \kopf
  \score
  {
    <<
      \new StaffGroup
      \with
      {
        \override VerticalAxisGroup.staff-staff-spacing.basic-distance = 8
      }
      <<
        \new BarNumberStaff=melodie
        <<
          \new NullVoice \Struktur
          \new Voice="melody" { \voiceOne \sop }
          \new Voice { \voiceTwo \alt  }
          \new NullVoice \Struktur
          \new Lyrics \lyricsto "melody" \firstverse
        >>
        \new Staff
        <<
          \new Voice="unten" { \voiceOne \ten }
          \new Voice { \voiceTwo \bas }
        >>
      >>
    >>
  }
  \strophen
}