Thomas Morley <[email protected]> writes:

> 2013/4/20 Daniel Rosen <[email protected]>:
>> I have a tempo marking that I want to split into two rows, as follows:
>>
>> \version "2.16.1"
>> {
>>   \tempo \markup { \column { "Line 1" "Line 2" } } 4 = 100
>>   c'1
>> }
>>
>> Is there a way for me to have the "4 = 100" part appear after "Line
>> 2" without having to write out the quarter note, equals sign,
>> etc. in markup?
>>
>> DR
>
> Something like below?
>
> \version "2.16.2"
> {
>   \tempo \markup \raise #3 { \column { "Line 1" "Line 2" } } 4 = 100
>   c'1
> }

Probably safer to use

\version "2.16.1"
{
  \tempo \markup { \override #`(direction . ,UP)
                   \dir-column { "Line 2" "Line 1" } } 4 = 100
  c'1
}

instead since this does not just align by accident.

-- 
David Kastrup


_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to