Daniel Rosen <[email protected]> writes:

> In the following example, I'd like to have less space between Lines A
> and B in the header. How can I accomplish this?
>
> %% start
>
> \version "2.16.1"
> \header {
>   composer = \markup { \center-column { "Line A" "Line B" } }
> }
>
> { c''1 }
>
> %% end

%% start

\version "2.16.1"
\header {
  composer = \markup \override #'(baseline-skip . 2)
                     \center-column { "Line A" "Line B" }
}

{ c''1 }

%% end

-- 
David Kastrup
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to