Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. \version "2.18.2"
  2.  
  3. % C Major Scale on the right hand
  4. CMajorScaleR = {
  5. % Ascending
  6. c16-1 d e f-1 g a b
  7. c-1 d e f-1 g a b
  8.  
  9. % Descending
  10. c-5 b a g f-1 e-3 d
  11. c-1 b a g f e d
  12.  
  13. c4
  14.  
  15. \bar "|."
  16. }
  17.  
  18. % C Major Scale on the left hand
  19. CMajorScaleL = {
  20. % Ascending
  21. c16-5 d e f g-1 a-3 b
  22. c-1 d-4 e f g-1 a-3 b
  23.  
  24. % Descending
  25. c-1 b a g-1 f e d
  26. c-1 b a g-1 f e d
  27. }
  28. s
  29. c4
  30.  
  31. \bar "|."
  32. }
  33.  
  34. global = {
  35. \key c \major
  36. \numericTimeSignature
  37. \time 8/4
  38. }
  39.  
  40. right = {
  41. \global
  42.  
  43. \autochange \relative c' {
  44. \CMajorScaleR
  45. }
  46. }
  47.  
  48. left = {
  49. \global
  50.  
  51. \autochange \relative c {
  52. \CMajorScaleL
  53. }
  54.  
  55. }
  56.  
  57. \score {
  58. \new PianoStaff \with {
  59. instrumentName = "Piano"
  60. } <<
  61. \new Staff = "up" \right
  62. \new Staff = "down" { \clef bass \left }
  63. >>
  64. \layout { }
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement