-
Notifications
You must be signed in to change notification settings - Fork 1
/
Czerny op599no04.ly
155 lines (120 loc) · 3.04 KB
/
Czerny op599no04.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
153
154
155
\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 { }
}}
mutopiatitle = "Practical Method for Beginners on the Pianoforte, No. 1"
opus = "Op. 599"
mutopiaopus = "Op. 599, No. 4"
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/01"
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
c2-1 d-2
e1-3
c2-1 d-2
e1-3
f2-2 f-2
g-5 f-4
e1-3
c-1
d2-2 d-2
e-3 f-4
g-5 e-3
c1-1
d2-2 d-2
f-4 d-2
c-1 e-3
c1-1
}
LHI = \relative c' {
\voiceThree
\clef treble
\global
e2-3 g-1
c,-5 g'-1
e-3 g-1
c,-5 g'-1
d-4 g-1
d-4 g-1
c,-5 g'-1
e1-3 \bar ":..:" \break
g2-1 f-2
e-3 d-2
c-5 g'-1
e-3 c-5
g'1-1
g-1
c,-5
c-5 \bar ":|."
}
LHII = \relative c' {
\voiceFour
\clef treble
\global
}
Dynamics = {
}
\score
{
\new PianoStaff \with {
instrumentName = \markup {
\center-column {
\line { \bold \huge { "№" } \number "4". }
\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 }
}