Re: misalignment in header -- fill-line issue?

Craig Fearing via bug-lilypond <[email protected]> Fri, 6 Jun 2025 09:04:37 +0200
Newsgroups gmane.comp.gnu.lilypond.bugs
Message-ID <[email protected]>
Subject:
Re: misalignment in header -- fill-line issue?
From:
Craig Fearing <[email protected]>
Date:
2025-06-06, 09:00

To:
Werner LEMBERG <[email protected]>



On 2025-06-06 06:02, Werner LEMBERG wrote:

[snip]
> Consider this example.
>
> ```

[snip]

But if we combine the line restrictions from James'  original post ( 
exaggerated  and expanded a bit) it is interesting to see which 
combinations obey the line length restrictions and which do not.

Craig Fearing

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\version "2.25.25"

\paper {
   indent = #0
   line-width = #75
}
\header {
   poet = "Poet (Trans. by Translator Name)"
   composer = "Composer"
   title = "TITLE"
   instrument    = "Instrument"
}

{ c'' }

\markup \fill-line {
   "Fill line"
   \fontsize #10 \bold "Title"
   "Right" }

{ f' }

\markup \fill-line {
   "Fill liiiiiiiiiiiiiiiiiiiiine"
   \fontsize #10 \bold "Title"
   "Right" }

{ g' }

\markup \justify-line{
   "Justify line"
   \fontsize #10 \bold "Title"
   "Right" }

{ a' }

\markup \justify-line{
   "Justify liiiiiiiiiiiiiiiiiiiiine"
   \fontsize #10 \bold "Title"
   "Right" }

{ b' }

\paper {
   ragged-right = ##f
   indent = 0
}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%