forked from DASTSAD/Czerny-op599
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCzerny op599no08.ly
139 lines (112 loc) · 3.02 KB
/
Czerny op599no08.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
\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. 8"
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
<c^1 e^3 g^5>1
<c^1 e^3 g^5>
<b^1 d^2 g^5 >
<c^1 e^3 g^5> \bar ":..:"
<b^1 d^2 f^5 >
<c^2 e^4>
<b^1 d^2 f^5 >
<c^2 e^4>
<g^1 d'^3 f^5 >
<g^1 d'^3 f^5 >
<f^1 b^3 d^5 >
<e^1 g^2 c^5 > \bar ":|."
}
LHI = \relative c' {
\voiceThree
\clef treble
\global
c2-5 e-3
c2-5 e-3
g-1 g-1
c,1-5
g'2-1 g-1
c,1-5
g'2-1 g-1
c,1-5
c2-2 e-1
c2-2 e-1
g,-5 g-5
c1-2
}
LHII = \relative c' {
\voiceFour
\clef treble
\global
}
Dynamics = {
}
\score
{
\new PianoStaff \with {
instrumentName = \markup {
\center-column {
\line { \bold \huge { "№" } \number "8". }
\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 }
}