[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Figured bass and rehearsal marks
From: |
Nicolas Sceaux |
Subject: |
Re: Figured bass and rehearsal marks |
Date: |
Sun, 1 Jan 2012 18:05:05 +0100 |
Le 1 janv. 2012 à 17:40, Neil Puttock a écrit :
>
> The after-line-breaking callback for RehearsalMark
> (ly:side-position-interface::move-to-extremal-staff) ignores axis
> groups which have no horizontal extent (such as the VerticalAxisGroup
> for the FiguredBass context).
>
> I'm not sure whether adding a non-empty extent will cause problems
> elsewhere, but the following seems to work:
>
> \version "2.15.24"
> \score {
> <<
> \new Voice {
> \clef "bass" d,1 g
> \once \override Score . RehearsalMark #'break-visibility =
> #begin-of-line-invisible
> \once \override Score . RehearsalMark #'direction = #DOWN
> \once \override Score . RehearsalMark #'self-alignment-X = #RIGHT
> \mark\markup { On reprend le Prelude. }
> }
> \figures { <4>2 <_+> }
> >>
> \layout {
> \context {
> \FiguredBass
> \override BassFigureAlignment #'X-extent = #'(0 . 0)
> }
> }
> }
Thank you Neil, I can't see side effects for the moment.
Nicolas