bug-lilypond
[Top][All Lists]
Advanced

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

Default title layout


From: VSD
Subject: Default title layout
Date: Fri, 03 Jun 2005 01:07:11 +0200
User-agent: Opera M2/8.0 (Win32, build 7561)

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




reply via email to

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