Hi,

Am 31.01.19 um 23:49 schrieb nagymusic:
Would anyone be willing to advise on how to left-align the title (also a
subtitle, dedication but not the composer)? I attached a screenshot from one
of the scores.

You can force LilyPond to use the whole line for the (then left-aligned) title using \fill-line:

  title = \markup \fill-line { \line { Add title here } \null }

This may be wrapped in a helper function:

#(define-markup-command (forceLeft layout props content) (markup?)
   (interpret-markup layout props
     #{
       \markup \fill-line { #content \null }
     #}
     ))

\header {
  title = \markup \forceLeft "Title of famous piece"
  subtitle = \markup \forceLeft \line { Interesting subtitle }
}

But note that due to copyright reasons, quite strict restrictions are likely to apply in most countries regarding re-typesetting the music contained in your link.

Lukas


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to