lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Make two headers on the same page


From: Knute Snortum
Subject: Re: Make two headers on the same page
Date: Sat, 24 Apr 2021 11:28:18 -0700

On Sat, Apr 24, 2021 at 6:42 AM Karlin High <karlinhigh@gmail.com> wrote:
>
> On 4/23/2021 5:45 PM, Николай Аничков wrote:
> > Please help me create two titles on the same page.
>
> Here is one way.
>
> % BEGIN LILYPOND CODE
>
> \version "2.19.48" % The latest version lilybin.com currently has
> \header {
>    title = \markup {
>      \fill-line {
>        \center-column {
>          "First Title"
>          "Second Title"
>        }
>      }
>    }
> }
>
> { c' }
>
> % END LILYPOND CODE
> --
> Karlin High
> Missouri, USA
>

Use "\line":

\version "2.19.48" % The latest version lilybin.com currently has
\header {
   title = \markup {
     \fill-line {
       \center-column {
         \line {
           "First Title"
         }
         \line {
           "Second Title"
         }
       }
     }
   }
}

{ c' }

--
Knute Snortum



reply via email to

[Prev in Thread] Current Thread [Next in Thread]