pianoAlone.ly 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. \version "2.16.0"
  2. \include "deutsch.ly"
  3. \include "pianoMvtI.ly"
  4. \include "pianoMvtII.ly"
  5. \include "pianoMvtIII.ly"
  6. \include "defs.ly"
  7. instrument = "Piano"
  8. \paper
  9. {
  10. obsolete-between-system-padding = #0.1 system-system-spacing #'padding = #(/ obsolete-between-system-padding staff-space) score-system-spacing #'padding = #(/ obsolete-between-system-padding staff-space)
  11. %obsolete-between-system-space = #0.1 system-system-spacing #'basic-distance = #(/ obsolete-between-system-space staff-space) score-system-spacing #'basic-distance = #(/ obsolete-between-system-space staff-space)
  12. ragged-last-bottom = ##f
  13. }
  14. \book
  15. {
  16. \include "header.ly"
  17. \score
  18. {
  19. \new PianoStaff
  20. <<
  21. \new Staff="RH"
  22. {
  23. \accidentalStyle "modern"
  24. \set Staff.extraNatural = ##f
  25. \pianoRightMvtI
  26. }
  27. \new Dynamics = "dynamics" \pianoDynamicsMvtI
  28. \new Staff="LH"
  29. {
  30. \accidentalStyle "modern"
  31. \set Staff.extraNatural = ##f
  32. << \pianoLeftMvtI >>
  33. %\pianoPedalsMvtI >>
  34. }
  35. %\new Dynamics = "pedals" \pianoPedalsMvtI
  36. %\outlineMvtI
  37. >>
  38. \layout
  39. {
  40. % [Convert-ly] The Dynamics context is now included by default.
  41. \context
  42. {
  43. \PianoStaff
  44. \accepts Dynamics
  45. \override VerticalAlignment #'forced-distance = #7
  46. }
  47. }
  48. }
  49. %-----------------------------------------------------------------------------
  50. \score
  51. {
  52. \new PianoStaff
  53. <<
  54. \new Staff="RH"
  55. {
  56. \accidentalStyle "modern"
  57. \set Staff.extraNatural = ##f
  58. \pianoRightMvtII
  59. }
  60. \new Dynamics = "dynamics" \pianoDynamicsMvtII
  61. \new Staff="LH"
  62. {
  63. \accidentalStyle "modern"
  64. \set Staff.extraNatural = ##f
  65. << \pianoLeftMvtII \pianoPedalsMvtII >>
  66. }
  67. %\new Dynamics = "pedals" \pianoPedalsMvtII
  68. \outlineMvtII
  69. >>
  70. \layout
  71. {
  72. % [Convert-ly] The Dynamics context is now included by default.
  73. \context
  74. {
  75. \PianoStaff
  76. \accepts Dynamics
  77. \override VerticalAlignment #'forced-distance = #7
  78. }
  79. }
  80. }
  81. %-----------------------------------------------------------------------------
  82. \score
  83. {
  84. \new PianoStaff
  85. <<
  86. \new Staff="RH"
  87. {
  88. \accidentalStyle "modern"
  89. \set Staff.extraNatural = ##f
  90. << \outlineMvtIII \pianoRightMvtIII >>
  91. }
  92. \new Dynamics = "dynamics" \pianoDynamicsMvtIII
  93. \new Staff="LH"
  94. {
  95. \accidentalStyle "modern"
  96. \set Staff.extraNatural = ##f
  97. << \outlineMvtIII \pianoLeftMvtIII \pianoPedalsMvtIII >>
  98. }
  99. %\new Dynamics = "pedals" \pianoPedalsMvtIII
  100. >>
  101. \layout
  102. {
  103. % [Convert-ly] The Dynamics context is now included by default.
  104. \context
  105. {
  106. \PianoStaff
  107. \accepts Dynamics
  108. \override VerticalAlignment #'forced-distance = #7
  109. }
  110. }
  111. }
  112. %-----------------------------------------------------------------------------
  113. %midi
  114. \score
  115. {
  116. <<
  117. \new PianoStaff
  118. <<
  119. \new Staff="RH"
  120. {
  121. << \pianoRightMvtI \pianoDynamicsMvtI \pianoPedalsMvtI >>
  122. << \pianoRightMvtII \pianoDynamicsMvtII \pianoPedalsMvtII >>
  123. << \pianoRightMvtIII \pianoDynamicsMvtIII \pianoPedalsMvtIII >>
  124. }
  125. \new Staff="LH"
  126. {
  127. << \pianoLeftMvtI \pianoDynamicsMvtI \pianoPedalsMvtI >>
  128. << \pianoLeftMvtII \pianoDynamicsMvtII \pianoPedalsMvtII >>
  129. << \pianoLeftMvtIII \pianoDynamicsMvtIII \pianoPedalsMvtIII >>
  130. }
  131. >>
  132. {
  133. << \midiOutlineMvtI \outlineMvtI >>
  134. << \midiOutlineMvtII \outlineMvtII >>
  135. << \midiOutlineMvtIII \outlineMvtIII >>
  136. }
  137. >>
  138. \midi { }
  139. }
  140. }