LessonsHistory/2013/20130322: 20130301.simple.solo2.ly
File 20130301.simple.solo2.ly, 470 bytes (added by snn, 12 years ago) |
---|
Line | |
---|---|
1 | \version "2.10.33" |
2 | |
3 | % European system (A B H C D E F G) |
4 | \include "deutsch.ly" |
5 | |
6 | global = { |
7 | \key c \major |
8 | \time 2/4 |
9 | } |
10 | |
11 | One = \new Voice {\relative c' { |
12 | \voiceOne |
13 | e4 e f e8 d f2 e |
14 | }} |
15 | Two = \new Voice {\relative c' { |
16 | \voiceOne |
17 | h'2 h c8 d c h a2 |
18 | }} |
19 | |
20 | \score { |
21 | \new StaffGroup |
22 | << |
23 | \new Staff |
24 | << |
25 | \global |
26 | \One |
27 | >> |
28 | \new Staff |
29 | << |
30 | \chords { |
31 | \germanChords |
32 | e2 h2:dim f4 e4 a2:m } |
33 | \global |
34 | \Two |
35 | >> |
36 | >> |
37 | \layout{} |
38 | \midi{} |
39 | } |