bug-lilypond
[Top][All Lists]
Advanced

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

Figured bass and rehearsal marks


From: Nicolas Sceaux
Subject: Figured bass and rehearsal marks
Date: Sun, 1 Jan 2012 16:19:02 +0100

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 <_+> }
  >>
}


PNG image


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 <_+> }
  >>
}

PNG image


(Is there a better way?)

Nicolas


reply via email to

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