lilypond-user
[Top][All Lists]
Advanced

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

Re: tempo markup problem


From: Jean Abou Samra
Subject: Re: tempo markup problem
Date: Thu, 11 Aug 2022 07:46:54 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.12.0



Le 11/08/2022 à 03:11, Craig Dabelstein a écrit :
Hi all,

I know this is not difficult but I just can't get it to work.

I want the tempo to look like:

Allegro moderato
die *[image of crotchet] *etwa 108 M.M.

I have this so far:

\tempo \markup \left-column { "Allegro moderato"
                                \smaller "die etwa 108 M.M."  }

To produce the crotchet I have:

\note {4} #1

but I can't get it all combined to actually work.

Any help?

All the best,



The piece you are missing is probably \line, which you
need in order to group elements in just one line of the column.

\version "2.22.2"

{
  \tempo \markup \left-column {
    "Allegro moderato"
    \line {
      \fontsize #-3 \general-align #Y #-0.8 \note {4} #1
      \smaller "die etwa 108 M.M."
    }
  }
  c'
}


See also
https://lilypond.org/doc/v2.23/Documentation/notation/formatting-text#text-markup-introduction
(that page of the documentation was improved in 2.23, but
the text there will work in 2.22 too).

Best,
Jean




reply via email to

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