]> git.donarmstrong.com Git - lilypond.git/blob - input/template/piano.ly
e371d0286d90a699fe42c9b02fa18a1376bdc2b0
[lilypond.git] / input / template / piano.ly
1 #(ly:set-option 'old-relative)
2 \version "1.9.0"
3
4 \header {
5   texidoc = "Simple piano music." 
6 }
7
8 upper = \notes\relative c'' {
9   a b c d
10 }
11
12 lower = \notes\relative c {
13   a2 c
14 }
15
16 \score {
17   \context PianoStaff <
18     %\time 4/4
19     \context Staff = upper \upper
20     \context Staff = lower <
21       \clef bass
22       \lower
23     >  
24   >
25   \paper { }  
26   \midi { }  
27 }