cello.ly 680 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. \version "2.16.0"
  2. \include "deutsch.ly"
  3. \include "defs.ly"
  4. \include "tutti.ly"
  5. \include "celloMvtI.ly"
  6. \include "celloMvtII.ly"
  7. \include "celloMvtIII.ly"
  8. instrument = "Violoncello"
  9. % Remove/comment when you wish to typeset the entire score
  10. %showLastLength = R1*15
  11. \paper
  12. {
  13. ragged-last-bottom = ##f
  14. }
  15. \book
  16. {
  17. \include "header.ly"
  18. \score
  19. {
  20. \new Staff
  21. {
  22. \set Score.skipBars = ##t
  23. << \celloMvtI \outlineMvtI >>
  24. }
  25. }
  26. \score
  27. {
  28. \new Staff
  29. {
  30. \set Score.skipBars = ##t
  31. << \celloMvtII \outlineMvtII >>
  32. }
  33. }
  34. \score
  35. {
  36. \new Staff
  37. {
  38. \set Score.skipBars = ##t
  39. << \celloMvtIII \outlineMvtIII >>
  40. }
  41. }
  42. }