\version "2.16.2"
#(set-global-staff-size 16)
#(set-default-paper-size "a4")

global = {
  
  \time 6/8  
}

Sopran = \relative c' {
  \set Staff.instrumentName = "Sopran"
\clef treble
\time 6/8 
\tempo \markup \fontsize #1.5 "Lebhaft"
\autoBeamOff \dynamicUp \partial 8 dis8\mf b'([g]) cis a4 f8 b ([d]) a cis ([e]) bes 
}
SopranText = \lyricmode {Ein re -- gen -- bo -- gen, re -- gen -- re -- gen --  }

Alt = \relative c' {
  \set Staff.instrumentName = "Alt   "
\clef treble
\autoBeamOff \dynamicUp \partial 8 dis8\mf b'([g]) cis a4 f8 g ([b]) e, f ([a]) fis 
}
AltText = \lyricmode { }

Tenor = \relative c {
  \set Staff.instrumentName = "Tenor "
\clef "treble_8"
\autoBeamOff \dynamicUp \partial 8 r8 r4 dis8\mf b'([g]) cis a4 f8 b4 as8 
}
TenorText = \lyricmode {Ein re -- gen -- bo -- gen, re -- gen --   }
 
Bass = \relative c {
  \set Staff.instrumentName = "Bass  "
\clef bass
\autoBeamOff \dynamicUp \partial 8 r8 r4 dis8\mf b'([g]) cis a4 f8 b4 as8 
}
BassText = \lyricmode {  }




\score {
  <<
     \new ChoirStaff <<
          \new Staff \new Voice = Sopran <<\global \Sopran 
            \new Lyrics \lyricsto Sopran \SopranText >>
          \new Staff \new Voice = Alt <<\global \Alt  
            \new Lyrics \lyricsto Alt \AltText  >>        
          \new Staff \new Voice = Tenor << \global \Tenor 
            \new Lyrics \lyricsto Tenor \TenorText >> 
          \new Staff \new Voice = Bass <<\global \Bass  
            \new Lyrics \lyricsto Bass \BassText >>
       >>
  >>
\layout {
  \context {    
    \Staff
    \override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3)
    
  }
 }
}