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

File 20130405.simple.solo.ly, 460 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 3/4
9}
10
11One = \new Voice {\relative c' {
12  \voiceOne
13  c4 d8 e8 f4 g4 a8 h8 c4 d4 e8 f8 g4 c,2.
14}}
15Two = \new Voice {\relative c' {
16  \voiceTwo
17  g'8 a8 h4 c4 c8 d8 e4 f4 f8 g8 a4 h4 e,4 f4 e4
18}}
19
20\score {
21  \new StaffGroup
22  <<
23  \new Staff
24  <<
25    \global
26    \One
27  >>
28  \new Staff
29  <<
30    \global
31    \Two
32  >>
33  >>
34  \layout{}
35  \midi{}
36}