Status: Accepted
Owner: ----
Labels: Type-Ugly
New issue 2725 by [email protected]: font-size commands both outside and
inside of \fill-line
http://code.google.com/p/lilypond/issues/detail?id=2725
in titling-init.ly [lines 36-39]:
\huge \larger \bold
\fill-line {
\larger \fromproperty #'header:title
}
why are the font determining commands both outside and inside of \fill-line?
this might be confusing for users who might seek logical reasons behind the
code!
IMO specially the files where users are pointed to should have a simple and
clearly understandable syntax!
suggestion: use one of the command (chains) below before \fromproperty #'...
- \huge \larger \larger \bold
- \larger \larger \larger \larger \bold
- \override #'(font-size . 4)
(they all seem to do the same)
[line 50:] is it necessary/intended to use brackets here?