Valentin Petzel wrote:

Does anyone of you have an idea how one can set baseline-skip to be
proportional to the font-size?

Well, when the markup command \fontsize changes the font size, it changes the baseline-skip too, to keep it proportional.

But this means that if you are overriding the baseline-skip, you need to take care where you place the override wrt \fontsize. See example 4.


\version "2.20.0"

\markup \line {
\column { A B C 1 }
\override #(cons 'baseline-skip 1.2) \column { A B C 2 }
\fontsize #-6 "..."
\fontsize #-6 \column { A B C 3 }
\fontsize #-6 \override #(cons 'baseline-skip 1.2) \column { A B C 4 }
\override #(cons 'baseline-skip 1.2) \fontsize #-6 \column { A B C 5 }
}



Cheers,
Robin

Reply via email to