Skip to content

Instantly share code, notes, and snippets.

@hftf

hftf/clair.ly Secret

Last active August 29, 2015 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hftf/b7d83b58e9429dddacb0 to your computer and use it in GitHub Desktop.
Save hftf/b7d83b58e9429dddacb0 to your computer and use it in GitHub Desktop.
\version "2.18.0"
#(ly:set-option 'preview #t)
#(ly:set-option 'print-pages #f)
#(ly:set-option 'point-and-click #f)
#(ly:set-option 'backend 'svg)
#(set-default-paper-size "letter" 'landscape)
global = {
\key des \major
\tempo \markup {\normal-text "Tempo rubato"}
}
{
\time 9/8
\new PianoStaff <<
\new Staff \relative a'' {
\clef treble \global
\times 3/2 { r8 <f bes f'>--\( ~ }
q <es bes' es>-- q--
q-- <des bes' des>-- q--
q-- <c ges' bes c>-- q--
\times 3/2 { q-- <des bes' des>-- }
<bes ges' bes>4.-- \)
}
\new Staff \relative a {
\clef bass \global
<< {
\times 3/2 { r8 \clef treble <f' ges bes>_-_\( ~ }
% without this, it's even uglier.
\override TieColumn.tie-configuration = #'((0.0 . 1) (-2.0 . 1) (-4.0 . -1))
q <es ges bes>_- q_-
q_- <des ges bes>_- q_-
q_- <c ges' bes>_- q_-
\times 3/2 { q_- <des ges bes>_- }
<bes des ges>4._- \)
} \\ {
<es=,, es'>2.
} >>
}
>>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment