bug-lilypond
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Issue 2379 in lilypond: resetting autoBeaming after a cadenza


From: lilypond
Subject: Issue 2379 in lilypond: resetting autoBeaming after a cadenza
Date: Sun, 04 Mar 2012 23:11:35 +0000

Status: Accepted
Owner: ----
Labels: Type-Defect

New issue 2379 by address@hidden: 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)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]