\version "2.19.40"
\language "italiano"

\header {
  % Elimina la tagline predefinita di LilyPond
  tagline = ##f
}

\layout {
  \context {
    \Score
    \remove "Metronome_mark_engraver"
    \remove "Staff_collecting_engraver"
  }
}

global = {
  \key do \major
  \time 4/4
  \tempo 4=100
}

sopranoVoice = \relative do'' {
  \global
  \dynamicUp
  % Qui segue la musica.
  
}


right = \relative do'' {
  \global
  % Qui segue la musica.
  
}

left = \relative do' {
  \global
  % Qui segue la musica.
  
}

sopranoVoicePart = \new Staff \with {
  \consists "Metronome_mark_engraver"
  instrumentName = "Soprano"
  shortInstrumentName = "S."
  midiInstrument = "choir aahs"
} { \sopranoVoice }

pianoPart = \new PianoStaff \with {
  \consists "Metronome_mark_engraver"
  instrumentName = "Pianoforte"
  shortInstrumentName = "Pf."
} <<
  \new Staff = "right" \with {
    midiInstrument = "acoustic grand"
  } \right
  \new Staff = "left" \with {
    midiInstrument = "acoustic grand"
  } { \clef bass \left }
>>

\score {
  <<
    \sopranoVoicePart
    \pianoPart
  >>
}
