lilypond-user
[Top][All Lists]
Advanced

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

Re: Formatting tempo text


From: Nathan Ho
Subject: Re: Formatting tempo text
Date: Mon, 8 Jun 2015 22:39:04 -0700

On Mon, Jun 8, 2015 at 9:03 PM, Marco Bagolin <address@hidden> wrote:


Hello all.
How can I obtain what you can see in What_I_want.png file?

My best result is in myresult.png file.
The code I wrote is the following:
\tempo \markup {\column {\line { \tiny {"''Do You Want to smile?''"}} \line {"Moderate - rhytmic, but expressive"}}}

But I want to obtain the formattation as in What_I_want.png file with the title "Do You Want to smile?" not bolt and with the marks under the text.

Thank you all for the help.


Hi Marco,

Markups can be "unbolded" with the \normal-text markup command, and the vertical order of rehearsal marks and tempo markings can be modified with the outside-staff-priority grob property.

{
  \override Score.RehearsalMark.outside-staff-priority = #1000
  \override Score.MetronomeMark.outside-staff-priority = #1500
  \mark \markup \box "42"
  \tempo \markup {
    \column {
      \line { \tiny \normal-text { "''Do You Want to smile?''" } }
      \line {"Moderate - rhytmic, but expressive" }
    }
  }
  c'1
}

Regards,
Nathan


reply via email to

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