]> git.donarmstrong.com Git - lilypond.git/blob - input/template/piano.ly
*** empty log message ***
[lilypond.git] / input / template / piano.ly
1 \version "2.3.4"
2
3 \header {
4   texidoc = "Simple piano music." 
5 }
6
7 upper = \relative c'' {
8   a b c d
9 }
10
11 lower = \relative c {
12   a2 c
13 }
14
15 \score {
16   \context PianoStaff <<
17     \set PianoStaff.instrument = "Piano  " % set instrument name.
18     \context Staff = upper \upper
19     \context Staff = lower <<
20       \clef bass
21       \lower
22     >>  
23   >>
24   \paper { }  
25   \midi { }  
26 }