diff options
Diffstat (limited to 'hr/stch/fertig/canzone/canzone.ly')
-rw-r--r-- | hr/stch/fertig/canzone/canzone.ly | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/hr/stch/fertig/canzone/canzone.ly b/hr/stch/fertig/canzone/canzone.ly new file mode 100644 index 0000000..7264a69 --- /dev/null +++ b/hr/stch/fertig/canzone/canzone.ly @@ -0,0 +1,48 @@ +%some settings% vim: ai sw=2 lbr nu encoding=utf8 + +\version "2.12.1" +\include "stimmen.ly" +\include "texte.ly" + + \header { + title = "Canzone da due soldi" + composer = "Musica di C. Conida" + opus = "Armonizzazione di C. Riffero" + %tagline = "" + } + + \paper { + %<+weitere Einstellungen+> + } + + \midi { + %\tempo 4 = <+bpm+> + } + + \layout { + indent = #0 + \context { + \Staff + \override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3.5) + } + } + + #(set-global-staff-size 17) + + \score { + \new ChoirStaff << + \new Staff = frauen << + %\new Voice = "meta" { s1*<+Anzahl der Takte+> \bar "|." } + \new Voice = "soprane" { \global \voiceOne \sopranMelodie } + \new Voice = "alti" { \global \voiceTwo \altMelodie } + \lyricsto soprane \sopranText + >> + \new Staff = maenner << + \new Voice = "tenoere" { \global \voiceOne \tenorMelodie } + \new Voice = "baesse" { \global \voiceTwo \bassMelodie } + \new Voice = "bass" { \global \voiceTwo \bassExtra } + \lyricsto bass \bassText + >> + >> + } + |