-
Notifications
You must be signed in to change notification settings - Fork 1
/
Czerny op599no11.ly
152 lines (121 loc) · 3.19 KB
/
Czerny op599no11.ly
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
\version "2.19.82"
\include "english.ly"
% \paper {
% #(set-paper-size "a4")
% % #(set-paper-size "letter")
% }
\header {
composer = "Czerny, C."
mutopiacomposer = "CzernyC"
title = \markup {
\center-column {
\line { "Practical Method for" }
\line { "Beginners on the Pianoforte" }
\italic \line { }
}}
subsubtitle = "Exercises for 5 fingers and quiet hand"
mutopiatitle = "Practical Method for Beginners on the Pianoforte, No. 1"
opus = "Op. 599"
mutopiaopus = "Op. 599, No. 11"
source = "Library of Musical Classics, No.146, New York: G. Schirmer, 1893. Plate 11038."
style = "Technique"
license = "Public Domain"
maintainer = "Daniel Studzinski"
maintainerWeb = "https://github.com/upsaratus/Czerny-op599"
mutopiainstrument = "Piano"
footer = "Mutopia-2018/07/03"
copyright = \markup { \override #'(baseline-skip . 0 ) \right-column { \sans \bold \with-url #"http://www.MutopiaProject.org" { \abs-fontsize #9 "Mutopia " \concat { \abs-fontsize #12 \with-color #white \char ##x01C0 \abs-fontsize #9 "Project " } } } \override #'(baseline-skip . 0 ) \center-column { \abs-fontsize #11.9 \with-color #grey \bold { \char ##x01C0 \char ##x01C0 } } \override #'(baseline-skip . 0 ) \column { \abs-fontsize #8 \sans \concat { " Typeset using " \with-url #"http://www.lilypond.org" "LilyPond" " by " \maintainer " " \char ##x2014 " " \footer } \concat { \concat { \abs-fontsize #8 \sans{ " Placed in the " \with-url #"http://creativecommons.org/licenses/publicdomain" "public domain" " by the typesetter " \char ##x2014 " free to distribute, modify, and perform" } } \abs-fontsize #13 \with-color #white \char ##x01C0 } } }
tagline = ##f
}
%--------Definitions
global = {
\key c \major
%\numericTimeSignature
\time 4/4
}
RHI = \relative c'' {
\voiceOne
\clef treble
\global
}
RHII = \relative c'' {
\voiceTwo
\clef treble
\override Fingering.direction = #UP
c4-1^(e-3 c-1 e-3
g-5 e c e
d-2 g-5 f-4 d-2
e-3 c g' e
c)^(e c e
g d c d
d g f d
c e c2) \bar ":..:" \break
d4^( e f d
e g e c
d)^( e f d
e g f d
c)^(e c e
g e c e
d g f d
c e c2) \bar ":|."
}
LHI = \relative c' {
\voiceThree
\clef treble
\global
<c-4 e-2 g-1>1
q
<b-5 d-3 g-1>
<c-4 e-2 g-1>
<c-5 e-3 g-1>
q
<b-5 f'-2 g-1>
<c e g>
<b-5 d-3 g-1>
<c-4 e-2 g-1>
<b d g>
<c e g>2 <b d g>
<c e g>1
<c-5 e-3 g-1>
<b-5 f'-2 g-1>2 q
<c e g>1
}
LHII = \relative c' {
\voiceFour
\clef treble
\global
}
Dynamics = {
}
\score
{
\new PianoStaff \with {
instrumentName = \markup {
\center-column {
\line { \bold \huge { "№" } \number "11". }
\line \large { }
\italic \line { }
}
}
shortInstrumentName = ""
midiInstrument = "acoustic grand"
}
<<
\new Staff="RH"
<<
\new Voice = "RF"
\RHI
\new Voice= "RS"
\RHII
>>
\new Staff="LH"
<<
\new Voice = "LF"
\LHI
\new Voice= "LS"
\LHII
>>
>>
\layout { }
\midi {\tempo 2 = 88 }
}