[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Size of titles when staff size and lyrics size are set independently
From: |
Thomas Morley |
Subject: |
Re: Size of titles when staff size and lyrics size are set independently in LilyPond version 2.18.2. |
Date: |
Thu, 22 Dec 2016 01:07:32 +0100 |
Again, no bug reported. Please refer to the user list
2016-12-21 18:43 GMT+01:00 Mirosław Doroszewski
<address@hidden>:
> Size of titles when staff size and lyrics size are set independently
> in LilyPond version 2.18.2.
>
> 1. When staff size and lyrics size are set independently, happens that
> size of titles is too small.
> 2. My solution is not universal: it has to be dane on every titles of
> large document (book).
> 3. And if number of pieces are big, i.e. 500, like in a song book?
> 4. I tried set font size of titles by overriding them in
> bookTitleMarkup (taken from titling-init.ly) put in piece template
> (with print-all-headers = ##t), but without any effect:
>
> bookTitleMarkup = \markup {
> \column {
> \fill-line {
> \abs-fontsize #20 % do not work
> \fromproperty #'header:title
> }
> }
> }
\paper {
bookTitleMarkup = \markup {
\column {
\fill-line {
\abs-fontsize #40
\fromproperty #'header:title
}
}
}
}
\header {
title = "TITLE"
}
{ c''1 }
\addlyrics { foo }
Works here, afaict.
-Harm