Skip to content

Instantly share code, notes, and snippets.

@hinrik
Created March 16, 2011 23:07
Show Gist options
  • Save hinrik/873518 to your computer and use it in GitHub Desktop.
Save hinrik/873518 to your computer and use it in GitHub Desktop.
\version "2.12.3"
foo = {
\relative c' {
<<
{
e8-1 b e b e b e b
d-1 b d b d b d b
d-1 b d b d b d b
d-1 a d a d a d a
}
\\
{
e4-5 g-4 e g
d-5 g-4 d g
d-5 fis-4 d fis
d-5 fis-4 d fis
}
>>
}
}
\new PianoStaff <<
\tempo 4 = 100
\new Staff {
\clef treble
\key e \minor
\time 4/4
\relative c' {
R1*4
\break
\repeat volta 2 {
r8 g16-1( fis-2 g8 b16-3 c b2)
r8 fis16-2( g-3 fis8 g16-3 a g2)
r8 fis16-2( e fis8 b16-4 c b2)
%r8 fis16-2( e fis2.)
r8 s8*7
}
}
}
\new Staff {
\clef bass
\key e \minor
\time 4/4
\relative c {
\clef bass
\foo
\repeat volta 2 { \foo }
}
}
>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment