\version "2.12.1"
#(set-global-staff-size 14)
\paper {
        between-system-padding = #0.1
        top-margin = #10
        bottom-margin = #10
        ragged-last-bottom = ##f 
        page-limit-inter-system-space = ##t
        ragged-right = ##f
        left-margin = #20
        line-width = #170
	}

\header {
title = "Seelchen, Teufelchen und Cymbal"
subtitle = "Musik über zwei slowakische Volksmelodien"
subsubtitle = "für Volksinstrumentenorchester und Gesang ad lib."
instrument = \markup \fill-line {\rounded-box "Partitur" \null \null}
copyright = "© Copyright 1987 by Erhard Fietz"
tagline = "Archiv Erhard Fietz"
} 
\markup \column {                
               \fill-line \fontsize #3.5 \bold {\null "1. (Anitschka, Seelchen)" \null }
               \fill-line {\null \null " "}
               \fill-line \fontsize #-1 {\null \null " Erhard Fietz"}
}

 global = {
\override Score.BarNumber #'break-align-symbols = #'(clef)
\override Score.BarNumber #'font-size = #0.5
\override Score.BarLine #'hair-thickness = #.4
\time 2/4
}

voltaAdLib = \markup { \text \italic { ad lib. } }

\markup \fill-line \fontsize #3.5 \bold {\null "3. (Munter, Jungens!)" \null}

Singst = \new Voice { \relative c'' {
\clef treble
c,8 c c' c
}}
\lyricmode { \set stanza = "1. " Bo -daj by vás,
 \set stanza = "2. " Co sa mam -ka 
}

Flt = \new Voice { \relative c'' {
\set Staff.instrumentName = \markup {\column { "Flöte        "
                                               "od. Fl. picc."}}
g8 g e e
}}

Klt = \new Voice { \relative c'' {
e8 e c, c'
}}

ViolOne = \new Voice { \relative c'' {
c8 e g c
}}

ViolTwo = \new Voice { \relative c'' {

c4 c,
}}
MndOne = \new Voice { \relative c''{

}}

MndTwo = \new Voice { \relative c''{

}}

Mdla = \new Voice { \relative c' {

}}

Git = \new Voice { \relative c {

}}

Bass = \new Voice { \relative c {

}}

Hackbr = \new Voice { \relative c' {

}}
HackbrCadenza = \relative c' {
c16 c c c c c c c 
}

music = {
% Singstimme + Text (2 Strophen) bitte einfügen     
      
  
\new StaffGroup  
<<
 \tag #'score \tag #'flt \new Staff  { << \global \Flt       >> } 
\tag #'score \tag #'klt   \new Staff  { << \global \Klt      >> }
 \tag #'score \tag #'viol1 \new Staff { << \global \ViolOne  >> }
 \tag #'score \tag #'viol2 \new Staff { << \global \ViolTwo  >> }
>>

\new StaffGroup
<<
 \tag #'score \tag #'mnd1 \new Staff  { << \global \MndOne	>> }
 \tag #'score \tag #'mnd2 \new Staff  { << \global \MndTwo	>> }
 \tag #'score \tag #'mdla \new Staff  { << \global \Mdla  	>> }
 \tag #'score \tag #'git  \new Staff  { << \global \Git   	>> }
 \tag #'score \tag #'bass \new Staff  { << \global \Bass	>> }
 \tag #'score \tag #'hackbr \new Staff { << \global \Hackbr     >> }          

 >> 
>>
}
\score {
	\new StaffGroup \keepWithTag #'score \music

\midi {	
		\context {
			\Score
			tempoWholesPerMinute = #(ly:make-moment 80 4)
		} 
	}
\layout { }
}


