Advertisement
Guest User

Untitled

a guest
Apr 29th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.25 KB | None | 0 0
  1. \version "2.18.2"
  2.  
  3. #(set-global-staff-size 21)
  4. #(ly:set-option 'midi-extension "mid")
  5.  
  6. \header {
  7. title = \markup {
  8. \override #'(font-name . "Georgia")
  9. "Kristallimetsä"
  10. }
  11. subtitle = \markup {
  12. \override #'(font-name . "Georgia Bold")
  13. "Crystal Forest"
  14. }
  15. composer = \markup {
  16. \override #'(font-name . "Georgia")
  17. "Sonaza"
  18. }
  19. tagline = ""
  20. }
  21.  
  22. global = {
  23. \key b \minor
  24. \time 3/4
  25. \tempo "Allegro" 4=120
  26. }
  27.  
  28. PianoRightHand = {
  29. \set Staff.midiInstrument = #"acoustic grand"
  30. \relative c'' {
  31. \global
  32. \clef treble
  33. R1*3/4_\markup { \dynamic p \italic \bold "dolce" } | R1*3/4 |
  34. R1*3/4 | R1*3/4 |
  35.  
  36. R1*3/4\< | R1*3/4 |
  37. R1*3/4\> | R1*3/4 |
  38.  
  39. \repeat volta 2
  40. {
  41. b4-1\!\p fis'4.-4 fis8 | g4 fis e |
  42. fis e-3 d-1 | cis2-2 d8 cis |
  43. b4 cis d | e d cis |
  44. b cis4. b8 | cis2 r4 |
  45.  
  46. b4-1 fis'4.-4 fis8 | g4 fis e |
  47. fis e-3 d-1 | cis2-2 d8 e |
  48. b4 cis d\< | e d cis |
  49. d e4. d8 | e2 r4\! |
  50.  
  51. d4-1\mf a'4.-5 g8-4 | fis4-3 e-2 fis-3 |
  52. d-1 cis-3 d-4 | b2-2 a4-1 |
  53. b-2 cis-3 d-1 | e fis g |
  54. fis e d8-1 b'8-5 | a2.-4 |
  55.  
  56. d,4-1\mp a'4.-5 g8-4 | fis4 e fis |
  57. d cis d | b2 a4-1 |
  58. b cis d | e-5 d cis |
  59. b cis4. a8-1 | b2.-2 |
  60. }
  61.  
  62. d4-1\f a'4.-5 g8-4 | fis4 e fis |
  63. d cis d | b2 a4 |
  64. b cis d | e fis g |
  65. fis e d8 b'8 | a2. | \break
  66.  
  67. d,4_\markup{ \hspace #0.1 \dynamic mp } a'4. g8 | fis4 e fis |
  68. d cis d | b2 a4 |
  69. b_\markup { \small "rit. e dim." } cis d | e d cis |
  70. b cis4. a8 | b2. |
  71.  
  72. R1*3/4 | R1*3/4 | \bar "|."
  73.  
  74. }
  75. }
  76.  
  77. PianoLeftHand = {
  78. \set Staff.midiInstrument = #"acoustic grand"
  79. \relative c {
  80. \global
  81. \clef bass
  82.  
  83. b4-5_"con ped." d-3 fis-1 | g, b d |
  84. b d fis | g, b d |
  85. e, g b | fis a cis |
  86. g b d | a cis e |
  87.  
  88. \repeat volta 2
  89. {
  90. b4 d fis | g, b d |
  91. b d fis | g, b d |
  92. e, g b | fis ais cis |
  93. g b d | a cis e |
  94.  
  95. b4 d fis | g, b d |
  96. b d fis | g, b d |
  97. e, g b | fis ais cis |
  98. g b d | a cis e |
  99.  
  100. d fis a | cis, fis a |
  101. b, d fis | a, cis e |
  102. g, b d | fis, ais cis |
  103. e, g b | a cis e |
  104.  
  105. d fis a | cis, fis a |
  106. b, d fis | a, cis e |
  107. g, b d | fis, ais cis |
  108. e, g b | b d fis |
  109. }
  110.  
  111. d fis a | cis, fis a |
  112. b, d fis | a, cis e |
  113. g, b d | fis, ais cis |
  114. e, g b | a cis e |
  115.  
  116. d fis a | cis, fis a |
  117. b, d fis | a, cis e |
  118. g, b d | fis, ais cis |
  119. e, g b | b d fis |
  120.  
  121. d2.~ | d2 r4 |
  122.  
  123. }
  124. }
  125.  
  126. \score {
  127. <<
  128. \new PianoStaff = "piano" <<
  129. \set PianoStaff.instrumentName = #"Piano "
  130. \new Staff = "upper" \PianoRightHand
  131. \new Staff = "lower" \PianoLeftHand
  132. >>
  133. >>
  134. \layout { }
  135. \midi { }
  136. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement