lessons/kanon_c-dur: canon_cdur_5.ly

File canon_cdur_5.ly, 949 bytes (added by snn, 13 years ago)

ноты канона 5 - исходник lilypond

Line 
1\version "2.12.3"
2\header{
3  title="04.11.2011. КаМПМ"
4  composer="И.КОкПть"
5  tagline="НабраМП в LilyPond 2.12.3"
6}
7
8%БуквеММые ПбПзМачеМОя, прОМятые в кПМтОМеМтальМПй ЕврПпе:
9%H --- сО, B --- сО-беЌПль.
10\include "deutsch.ly"
11
12% Ajust size
13%#(set-global-staff-size 30.0)
14
15\paper  {
16  myStaffSize = #20
17  #(define fonts
18    (make-pango-font-tree "Linux Libertine"
19                          "Droid Sans"
20                          "Droid Sans Mono"
21                           (/ myStaffSize 20)))
22}
23
24global = {
25  \key c \major
26  \time 4/4
27  \tempo 4 = 60
28}
29
30voiceOne = \new Voice { \relative c'' {
31  c4. d8 f4 c8 h8
32  e4 f8 f8 r4 g4
33  e4 c8 d8 a4 c4
34  c8 h8 a4 r4 e'8 f8
35}}
36
37\score{
38  \new StaffGroup <<
39    \new Staff
40    <<
41      \global
42      \voiceOne
43    >>
44   
45  >>
46  \layout{
47    \context {
48      \Score
49      \remove "Bar_number_engraver"
50    }
51  }
52  \midi{}
53}
54