Skip to content

Instantly share code, notes, and snippets.

@igneus
Last active November 20, 2016 12:28
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save igneus/3657434 to your computer and use it in GitHub Desktop.
Save igneus/3657434 to your computer and use it in GitHub Desktop.
\version "2.16.0"
global = {
% \key c \major
\cadenzaOn % no timing, no automatic bars
% no stem
\override Stem #'transparent = ##t
\override Stem #'Y-extent = ##f
% no time signature
\override Score.TimeSignature #'stencil = ##f
}
sopran = \relative c'' {
\global
}
alt = \relative c' {
\global
}
tenor = \relative c {
\global
}
bass = \relative c {
\global
}
lyricss = \lyricmode {
}
\score {
<<
\new Staff <<
\new Voice = "sopran" { \voiceOne \sopran }
\new Voice = "alt" { \voiceTwo \alt }
>>
\new Lyrics \lyricsto "sopran" { \lyricss }
\new Staff <<
\clef bass
\new Voice = "tenor" { \voiceOne \tenor }
\new Voice = "bass" { \voiceTwo \bass }
>>
>>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment