Skip to content

Instantly share code, notes, and snippets.

@bvaudour
Created March 3, 2020 06:40
Show Gist options
  • Save bvaudour/f917d4af052b08256c5dd3157d522be5 to your computer and use it in GitHub Desktop.
Save bvaudour/f917d4af052b08256c5dd3157d522be5 to your computer and use it in GitHub Desktop.
Lilypnd fragment
\version "2.20.0"
\header {
title = "L’Écho du Danube"
subtitle = "Sonate n°2"
composer = "Johannes Schenk"
}
global = {
\key a \minor
\time 4/4
}
violI = \relative c' {
\global
\clef altovarC
a8. c16 c8 b16 a b8 e,4 e8 |
a8.( b32 c) b8. c32( a) gis8 e e'4~ |
e8 f16\prall e d8 g,8 c4
}
violII = \relative c {
\global
\clef bass
a2 gis4 g |
f d e r8 c' |
d4. d8 e4.
}
continuo = \figuremode {
\global
s2. <6>4 |
s <6> <_+> s |
<9> <8> <7>
}
\score {
\new StaffGroup <<
\new Staff {
\violI
}
\new Staff {
\violII
}
\new FiguredBass {
\continuo
}
>>
\layout {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment