On Sat, Apr 24, 2021 at 6:42 AM Karlin High <karlinh...@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