lilypond-user
[Top][All Lists]
Advanced

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

Re: space between title and music


From: David Nalesnik
Subject: Re: space between title and music
Date: Sun, 5 Feb 2012 07:57:44 -0600

Hi Martin,

On Sun, Feb 5, 2012 at 7:46 AM, Kieren MacMillan <address@hidden> wrote:
Hi Martin,

> I am trying to create more vertical space between the title+subtitle of a
> score and the first music system, but without changing the space between the
> composer/arranger and the music system.


http://lilypond.org/doc/v2.15/Documentation/notation/custom-headers-footers-and-titles

Hope this helps!
Kieren.


Kieren has pointed you to the place to look for information on how to do this.  One thing I can add is that you might take the definitions of bookTitleMarkup and scoreTitleMarkup from titling-init.ly as templates and work with them to get a custom look.  I've adapted scoreTitleMarkup to get the increased space you want:

\version "2.14.2"

\paper { 
  ragged-right = ##f
  scoreTitleMarkup = \markup {
    \override #'(baseline-skip . 10) %% this will change distance between title/subtitle and composer/arranger
    \column {
      \override #'(baseline-skip . 3.5)
      \column {
\huge \larger \bold
\fill-line {
 \larger \fromproperty #'header:title
}
\fill-line {
 \large \smaller \bold
 \larger \fromproperty #'header:subtitle
}
\fill-line {
 \smaller \bold
 \fromproperty #'header:subsubtitle
}
      }
      \override #'(baseline-skip . 3.5)
      \column {
\fill-line {
 \fromproperty #'header:poet
 { \large \bold \fromproperty #'header:instrument }
 \fromproperty #'header:composer
}
\fill-line {
 \fromproperty #'header:meter
 \fromproperty #'header:arranger
}
      }
    }
  }
}

\score {
  \new Staff { c''1 }
  \header {
    title = "Title"
    subtitle = "Subtitle"
    composer = "Composer"
    arranger = "Arranger"
  }
}


HTH,
David
 

reply via email to

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