\version "2.20.0" \include "deutsch.ly" %% Decima parte. globalX = { \override Staff.TimeSignature.style = #'mensural \key c \major \set Timing.defaultBarType ="!" } %% PDF p.73. sopranoOneX = \relative c' { \globalX \time 4/4 \set Score.tempoHideNote = ##t \tempo 2 =120 % Music follows here. \slurDashed \set Timing.measureLength = #(ly:make-moment 8/4) d'1 e2 c2 h2. h4 h4 h4 c4 d4 e2. e4 d4 %\once \override Staff.BarLine.transparent =##t g,4 a4 h4 %% need to get regular "!" bar here } %% PDF p.174. sopranoTwoX = \relative c' { \globalX \slurDashed % Music follows here. h'1 g2 a2 gis2. gis4 gis4 gis4 a4 h4 c2. c4 h4 h4 c4 d4 %% need to get regular "!" bar here } %% PDF p.278. bassX = \relative c { \clef "bass" \globalX \slurDashed % Music follows here. g1 c2 a2 e'2. e4 e4 e4 a4 g4 c,2. c4 g2*1/2 %\once \override Staff.BarLine.transparent =##t s4 r2 \once\set Staff.whichBar = "||" %% hack to have no bar in midle of the "bar" and "||" bar at the end of it in this bar. } sopranoOneVerseX = \lyricmode { % Lyrics follow here. \set stanza = "10." Più lar -- ga~à po -- ve -- ri -- se Ro -- ma veg -- ge -- mi, Non cer -- chi~al } sopranoTwoVerseX = \lyricmode { % Lyrics follow here. \set stanza = "10." Più lar -- ga~à po -- ve -- ri -- se Ro -- ma veg -- ge -- mi, Non cer -- chi~al } bassVerseX = \lyricmode { % Lyrics follow here. \set stanza = "10." Più lar -- ga~à po -- ve -- ri -- se Ro -- ma veg -- ge -- mi, } choirPartX = \new ChoirStaff << \new Staff \with { midiInstrument = "choir aahs" instrumentName = "S. I" \consists "Ambitus_engraver" } { \sopranoOneX } \addlyrics { \sopranoOneVerseX } \new Staff \with { midiInstrument = "choir aahs" instrumentName = "S. II" \consists "Ambitus_engraver" } { \sopranoTwoX } \addlyrics { \sopranoTwoVerseX } \new Staff \with { midiInstrument = "choir aahs" instrumentName = "B." \consists "Ambitus_engraver" } { \bassX } \addlyrics { \bassVerseX } >> \score { << \choirPartX >> \layout { } \header { dedication = ##f title = ##f subtitle = ##f composer = ##f piece = "Decima parte." % Remove default LilyPond tagline tagline = ##f } }