Advertisement
Guest User

Untitled

a guest
Mar 29th, 2013
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 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. {\set countPercentRepeats = ##t
  14. \override PercentRepeat #'transparent = ##t
  15. \override PercentRepeatCounter #'staff-padding = #1
  16. \repeat percent 12 { s1 }}
  17. >>
  18. }
  19.  
  20. voiceone = { \music c''1}
  21. voicetwo = { \music r1}
  22.  
  23. \new StaffGroup {
  24. <<
  25. \new Staff \voiceone
  26. \new Staff \voicetwo
  27. >>
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement