Hi,

in titling-init.ly (2.5.27 win native), bookTitleMarkup is defined as:

bookTitleMarkup = \markup {
  \override #'(baseline-skip . 3)
  \column {
    \fill-line { \fromproperty #'header:dedication }
    \column {
      \override #'(baseline-skip . 3.5)
        
        (...)

shouldn't the 2nd baseline-skip be set *before* the \column command? Changing its value as it is now has no effect at all, but changing the order of these two instructions:

bookTitleMarkup = \markup {
  \override #'(baseline-skip . 3)
  \column {
    \fill-line { \fromproperty #'header:dedication }
    \override #'(baseline-skip . 3.5)
    \column {
        
        (...)

yelds some more reasonable spacing and the value given to baseline-skip is actually reflected in the result.

...or at least I think so :)

Greetings,

Vincent


_______________________________________________
bug-lilypond mailing list
bug-lilypond@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-lilypond

Reply via email to