]> git.donarmstrong.com Git - lilypond.git/blob - input/template/piano.ly
* scripts/convert-ly.py (FatalConversionError.figures_replace):
[lilypond.git] / input / template / piano.ly
1 #(ly:set-option 'old-relative)
2 \version "1.9.4"
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 }