Comment #5 on issue 2713 by [email protected]: \compoundMeter cannot
handle irrational or fractional meters
http://code.google.com/p/lilypond/issues/detail?id=2713
This is really a request for two quite extensive enhancements.
{ \compoundMeter #'((3 2 3 8) (1 10))
\autoBeamOff %% Workaround, until the auto-beamer can handle such a
time-signature
c'4. c'4 c'4. \times 4/5 { c'8 } }
{ % desired enhancement, nested fractions in time-signatures
%%% \compoundMeter #'((4 2/3 4)) %% ( 4 + 2/3 ) / 4
\compoundMeter #'((4 4) (2 12)) % Workaround, 4/4 + 2/12, seems more
readable
c'4 c'4 c'4 c'4 \times 2/3 { c'4 } |
}