Status: Accepted
Owner: ----
Labels: Type-Defect
New issue 2379 by elu...@gmail.com: resetting autoBeaming after a cadenza
http://code.google.com/p/lilypond/issues/detail?id=2379
usually, auto beaming after a cadenza keeps turned off if it continues with
a grace
\version "2.15.31"
\relative c' {
e8 e e e e e e e
\cadenzaOn
e e e e e e e e
\cadenzaOff
\bar "|"
\grace f8
e e e e e e e e
}
a workaround has been elaborated by David Bobroff using
\set Timing.measurePosition = #(ly:make-moment 0 4)
at the right place - which is after \cadenzaOff and between the \bar and
the \grace:
\relative c' {
e8 e e e e e e e
\cadenzaOn
e e e e e e e e
\cadenzaOff
\bar "|"
\grace f8
\set Timing.measurePosition = #(ly:make-moment 0 4)
e e e e e e e e
}
see
http://old.nabble.com/%5Cgrace-after-%5CcadenzaOff-suppresses-auto-beams-ts33437479.html
for more details
don't know if this can turned on automagically or if it should be added in
the docs (as known issues and workarounds)
_______________________________________________
bug-lilypond mailing list
bug-lilypond@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-lilypond