LessonsHistory/2013/20130301: 20130301.simple.solo.ly

File 20130301.simple.solo.ly, 411 bytes (added by snn, 11 years ago)

учебное соло - исходник lilypond

Line 
1\version "2.10.33"
2
3% European system (A B H C D E F G)
4\include "deutsch.ly"
5
6global = {
7  \key c \major
8  \time 2/4
9}
10
11One = \new Voice {\relative c' {
12  \voiceOne
13  a8 h c d e4 c a2
14  a8 h c d e4 c d2
15  d8 e f g a4 f d2
16  h8 c d e f4 g, a2
17}}
18
19\score {
20  \new StaffGroup
21  <<
22  \new Staff
23  <<
24    \chords { a2:m s2 s2 s2 s2 d2:m s2 s2 s2 e2 s2 a2:m }
25    \global
26    \One
27  >>
28  >>
29  \layout{}
30  \midi{}
31}