%{ Rock compo originally by Mark. Score and Parts %} \version "2.6.0" \include "compo.ly" \paper { systemSeparatorMarkup = \slashSeparator raggedbottom = ##f raggedlastbottom = ##f } \book { \header { title = "Ware Whare" composer = "Mark, Steph, Joshua, Joy" tagline = "" } \score { << \context ChoirStaff << \context Staff = "sopranos" << \set Staff.instrument = "Soprano " \set Staff.instr = "Sop. " \context Voice = sopranos {\sopranoMel} \context Lyrics = sopranos { s2. } >> \context Staff = "altos" << \set Staff.instrument = "Alto " \set Staff.instr = "Alt. " \context Voice = altos {\altoMel} \context Lyrics = altos { s2. } >> \context Staff = "bassos" << \set Staff.instrument = "Bass " \set Staff.instr = "Bas. " \context Voice = basses {\bassMel} \context Lyrics = basses { s2. } >> \context Lyrics = sopranos \lyricsto sopranos \sopranoLyrics \context Lyrics = altos \lyricsto altos \altoLyrics \context Lyrics = basses \lyricsto basses \bassLyrics >> \context Staff = "violin" { \set Staff.instrument = "Violin" \set Staff.instr = "Vln. " \violinMel } \context PianoStaff << \set PianoStaff.instrument = "Piano " \set PianoStaff.instr = "Pno. " \context Staff = "up" { \clef treble \pianoRH } \context Staff = "down" { \clef bass \pianoLH } >> >> \layout { } \midi { \tempo 4 = 100 } } } \paper { systemSeparatorMarkup = "" raggedbottom = ##t raggedlastbottom = ##t } \book { \header { title = "Ware Whare" composer = "Mark, Steph, Joshua, Joy" instrument = "Violin" tagline = "" } \score { \context Staff = "violin" { \set Score.skipBars = ##t \violinMel } } } \book { \header { title = "Ware Whare" composer = "Mark, Steph, Joshua, Joy" instrument = "Piano" tagline = "" } \score { \context PianoStaff << \context Staff = "up" { \clef treble \pianoRH } \context Staff = "down" { \clef bass \pianoLH } >> } } \book { \header { title = "Ware Whare" composer = "Mark, Steph, Joshua, Joy" instrument = "Soprano" tagline = "" } \score { \context Staff = "sopranos" << \set Score.skipBars = ##t \context Voice = "sopranos" { \sopranoMel } \lyricsto "sopranos" \new Lyrics \sopranoLyrics >> } } \book { \header { title = "Ware Whare" composer = "Mark, Steph, Joshua, Joy" instrument = "Alto" tagline = "" } \score { \context Staff = "altos" << \set Score.skipBars = ##t \context Voice = "altos" { \altoMel } \lyricsto "altos" \new Lyrics \altoLyrics >> } } \book { \header { title = "Ware Whare" composer = "Mark, Steph, Joshua, Joy" instrument = "Bass" tagline = "" } \score { \context Staff = "basses" << \set Score.skipBars = ##t \context Voice = "basses" { \bassMel } \lyricsto "basses" \new Lyrics \bassLyrics >> } }