LessonsHistory/20160325: 20160325.canon.svero.ly

File 20160325.canon.svero.ly, 1011 bytes (added by snn, 9 years ago)

учебный канон - исходник lilypond

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