On 27/01/2020 06:54, Mark Stephen Mrotek wrote:
Hello All,
In 18^th C piano music some movements have a “header” that describes
the form, e.g., Rondo, Minuetto.
This designation is to the left above any tempo marking.
What commands can I use to achieve this?
Thank you for your kind attention.
Mark Stephen Mrotek
I do it like this
movement =
#(define-music-function (mvt) (string?)
#{
\once \override Score.RehearsalMark.break-align-symbols = #'(left-edge)
\once \override Score.RehearsalMark.self-alignment-X = #LEFT
\once \override Score.RehearsalMark.Y-offset = 7
\once \override Score.RehearsalMark.font-size = 3
\mark \markup #mvt
#}
)
{
\movement "Finale"
c'4 e'4 g'4 c''4 |
}
--
Timothy Lanfear, Bristol, UK.