]> git.donarmstrong.com Git - lilypond.git/blob - input/template/piano-4-voices.ly
lilypond-1.5.2
[lilypond.git] / input / template / piano-4-voices.ly
1 \version "1.5.1"
2
3 \header {
4   dedication = "dedication"
5   title = "Title"
6   subtitle = "Subtitle"
7   subsubtitle = "Subsubtitle"
8   composer = "Composer (xxxx-yyyy)"
9   opus = "Opus 0"
10   piece = "Piece I"
11   instrument = "Instrument"
12   arranger = "Arranger"
13   poet = "Poet"
14   texttranslator = "Translator"
15   copyright = "public domain"
16   enteredby = "jcn"
17   source =  "urtext"
18 }
19
20 upperOne = \notes\relative c'' {
21   \voiceOne
22   a b c d
23 }
24
25 upperTwo = \notes\relative c' {
26   \voiceTwo
27   a2 c
28 }
29
30 lowerOne = \notes\relative c {
31   \voiceOne
32   a2 c
33 }
34
35 lowerTwo = \notes\relative c {
36   \voiceTwo
37   a1
38 }
39
40 \score {
41   \context PianoStaff <
42     %\time 4/4
43     \context Staff = upper <
44       \context Voice = one \upperOne
45       \context Voice = two \upperTwo
46     >  
47     \context Staff = lower <
48       \clef bass
49       \context Voice = one \lowerOne
50       \context Voice = two \lowerTwo
51     >  
52   >
53   \paper { }  
54   \midi { }  
55 }