Last active
November 20, 2016 12:28
-
-
Save igneus/3657434 to your computer and use it in GitHub Desktop.
Lilypond (chant?) organ accompaniment template http://forum.musicasacra.com/forum/discussion/7429/who-has-a-lilypond-template-for-organ-accompaniment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\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