Advertisement
Guest User

Untitled

a guest
Mar 29th, 2013
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. \version "2.16.2"
  2.  
  3. \layout {
  4. \context {
  5. \RemoveEmptyStaffContext
  6. \override VerticalAxisGroup #'remove-first = ##t
  7. }
  8. }
  9.  
  10. music = {
  11.  
  12. \repeat unfold 4 {c''1} \break \repeat unfold 4 {c''1} \break \repeat unfold 4 {c''1} \break}
  13.  
  14. voiceone = { \music c''1}
  15. voicetwo = { \music r1}
  16.  
  17. \new StaffGroup {
  18. <<
  19. \new Staff \voiceone
  20. \new Staff \voicetwo
  21. >>
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement