lessons/kanon_c-dur: canon_cdur_3.ly

File canon_cdur_3.ly, 467 bytes (added by snn, 13 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% Ajust size
7%
8
9global = {
10  \key c \major
11  \time 3/4
12}
13
14One = \new Voice {\relative c'' {
15  \voiceOne
16  g4 f e d d8 e g4 a h c c d c g4 f e
17
18}}
19
20Two = \new Voice {\relative c'' {
21  \voiceTwo
22  r4 r4 r4 g4 f e d d8 e g4 a h c c d c
23}}
24
25\score {
26  \new StaffGroup
27  <<
28  \new Staff
29  <<
30    \global
31    \One
32  >>
33  \new Staff
34  <<
35    \global
36    \Two
37  >>
38  >>
39  \layout{}
40  \midi{}
41}