On Mon, Jun 8, 2015 at 9:03 PM, Marco Bagolin <[email protected]>
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
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to