lilypond-user
[Top][All Lists]
Advanced

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

Re: MetronomeMark markup


From: David Kastrup
Subject: Re: MetronomeMark markup
Date: Sun, 21 Apr 2013 07:14:34 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux)

Thomas Morley <address@hidden> writes:

> 2013/4/20 Daniel Rosen <address@hidden>:
>> 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




reply via email to

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