lilypond-user
[Top][All Lists]
Advanced

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

Re: Workaround for issue 4633?


From: Thomas Morley
Subject: Re: Workaround for issue 4633?
Date: Fri, 16 Oct 2015 01:25:37 +0200

2015-10-15 23:38 GMT+02:00 Simon Albrecht <address@hidden>:
> Hello,
>
> does anybody have an idea how to work around issue 4633
> <https://sourceforge.net/p/testlilyissues/issues/4633/>? The problem is that
> the MMR should use the same glyph as `r\breve`, but it doesn’t iff the staff
> is explicitly instantiated _and_ Timing_translator is moved to Staff level.
> I don’t know of any way to override this glyph choice…
>
> Thanks in advance,
> Simon

\version "2.19.28"

voiceI = \relative {
  \time 4/2
  %% as long as you use \time 4/2 and never want to print any
rests.0-glyphs use:
  %% otherwise add \once ...
  \override MultiMeasureRest.usable-duration-logs = #'(-3 -2 -1)
  R\breve
  r\breve
}

\score {
  % comment to trigger bug
  \new Staff
  \voiceI
}

\layout {
  \context {
    \Score
    \remove "Timing_translator"
  }
  \context {
    \Staff
    \consists "Timing_translator"
  }
}


HTH,
  Harm



reply via email to

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