\version "2.27.0"

\header {
  title = \markup {
    \with-url "https://www.cpdl.org/wiki/index.php/Es_mi_Rosa_bella_(Tomás_de_Torrejón_y_Velasco)"
    {Es mi Rosa bella}
  }
  composer = "Tomás de Torrejón y Velasco (1644-1728)"
  subtitle = "Dúo a 3 voces a Santa Rosa de Lima"
  tagline = \markup {
    Engraved on
    \simple #(strftime "%Y-%m-%d" (localtime (current-time)))
    with \with-url #"http://lilypond.org/"
    \line { LilyPond \simple #(lilypond-version) (http://lilypond.org/) }
  }
}

\paper {
  #(set-paper-size "letter")
  % Add space for instrument names
  indent = 33\mm
}

global = {
  \key c \major
  \time 4/4
}

sopranoVoiceI = \relative c'' {
  \global
  \dynamicUp
  a b c
  
}

verseSopranoVoiceI = \lyricmode {
  % Lyrics follow here.
  
}

sopranoVoiceII = \relative c'' {
  \global
  \dynamicUp
  % Music follows here.
  
}

verseSopranoVoiceII = \lyricmode {
  % Lyrics follow here.
  
}

tenorVoice = \relative c' {
  \global
  \dynamicUp
  % Music follows here.
  
}

verseTenorVoice = \lyricmode {
  % Lyrics follow here.
  
}

bcMusic = \relative c {
  \global
  % Music follows here.
  
}

bcFigures = \figuremode {
  \global
  \override Staff.BassFigureAlignmentPositioning.direction = #DOWN
  % Figures follow here.
  
}

sopranoVoiceIPart = \new Staff \with {
  instrumentName = "Soprano I"
  midiInstrument = "choir aahs"
} { \sopranoVoiceI }
\addlyrics { \verseSopranoVoiceI }

sopranoVoiceIIPart = \new Staff \with {
  instrumentName = "Soprano II"
  midiInstrument = "choir aahs"
} { \sopranoVoiceII }
\addlyrics { \verseSopranoVoiceII }

tenorVoicePart = \new Staff \with {
  instrumentName = "Tenor / Contralto"
  midiInstrument = "choir aahs"
} { \clef "treble_8" \tenorVoice }
\addlyrics { \verseTenorVoice }

bassoContinuoPart = <<
  \new Staff \with {
    instrumentName = "Continuo"
    midiInstrument = "cello"
  } { \clef bass \bcMusic }
  \new FiguredBass \bcFigures
>>

\score {
  <<
    \new StaffGroup <<
      \sopranoVoiceIPart
      \sopranoVoiceIIPart
      \tenorVoicePart
    >>
    \bassoContinuoPart
  >>
  \layout { }
  \midi {
    \tempo 4=100
  }
}
