\version "2.18.0"

\include "../../lilypond-custom-includes/base_config.ly"

HEADER = \bookpart {
  \header {
    title = "Titel"
    alttitle = "Liedanfang"
    authors = #'(
      ("" ))
    year_text = ""
    year_melody = ""
    infotext = ""
  }
}

global = {
  %Takt
  \time 4/4
  %Tonart
  \key c \major
}

firstVerse = \lyricmode {
  \set stanza = "1."
  Lyrics
}

firstVoice = \relative c' {
  \global
  c
  \bar "|."
}

verseChords = \chordmode { c }

MUSIC = {
  <<
      \chords {
        c
      }
      \new ChoirStaff = "firstStaff"
      <<
        \new Voice = "firstVoice" { \firstVoice }
        \addlyrics { \firstVerse }
      >>
   >>
}
%}
TEXT = \markuplist {
  \group-verses {
    \chordverse #"2."
    #"(Stro,a:m)phen(text,g)
(G,a:m)ras (ist,c) (grĂ¼n,f)"
  }
}

\include "../../lilypond-common-includes/standalone_output.ly"