bug-lilypond
[Top][All Lists]
Advanced

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

Re: Rehearsal mark positionning


From: Neil Puttock
Subject: Re: Rehearsal mark positionning
Date: Sun, 13 Sep 2009 19:38:08 +0100

2009/9/13 Reinhold Kainhofer <address@hidden>:

> But the problem was that without moving to the top staff, these grobs are not
> accounted for in the vertical layout, thus leading to collisions, etc. Or am I
> misremembering something here?

No, I'm sure you're right here, which means there's a problem with
disabling the after-line-breaking callback, especially in the case of
tall Score objects.

#(set-default-paper-size "a6")

\book {
  \paper {
    oddHeaderMarkup = "header"
    ragged-last-bottom = ##f
  }
  \score {
    <<
      \new Staff { \mark \markup \column { T A L L M A R K } c'1 \break
        \mark \markup \column { T A L L M A R K } c'1 }
      \new Staff { c'1 \break c'1 }
    >>
    \layout {
      \context {
        \Score
        \override RehearsalMark #'after-line-breaking = ##t
        \override RehearsalMark #'direction = #DOWN
      }
    }
  }
}

Regards,
Neil




reply via email to

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