Comment #8 on issue 1014 by n.putt...@gmail.com: Full/multi measure rests should be semibreve (for any but 4/2)
http://code.google.com/p/lilypond/issues/detail?id=1014

Now, still, I should preceede every 4/2 measure with \once \override ...

The following override will automate the process:

\override MultiMeasureRest #'usable-duration-logs =
#(lambda (grob)
(let ((measure-length (ly:grob-property (ly:spanner-bound grob LEFT) 'measure-length)))
     (if (equal? measure-length (ly:make-moment 2 1))
         '(-1)
         '(0))))


_______________________________________________
bug-lilypond mailing list
bug-lilypond@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-lilypond

Reply via email to