Hi, LilyPond from today's git.
ReahearsalMarks, with DOWN direction, are placed between the lower staff
and its figured bass, whereas one would expect the mark to appear below
the figured bass.
Example:
\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 <_+> }
>>
}
<<inline: figured-bass+mark.preview.png>>
A possible workaround:
\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
\once \override Score . RehearsalMark #'X-extent = #'(0 . 0)
\once \override Score . RehearsalMark #'Y-offset = #-10
\mark\markup\right-align\line { On reprend le Prelude. }
}
\figures { <4>2 <_+> }
>>
}
<<inline: figured-bass+mark-wordwaround.preview.png>>
(Is there a better way?) Nicolas
_______________________________________________ bug-lilypond mailing list [email protected] https://lists.gnu.org/mailman/listinfo/bug-lilypond
