lilypond-user
[Top][All Lists]
Advanced

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

Re: Markup with 3 lines


From: Roman Käppeler
Subject: Re: Markup with 3 lines
Date: Wed, 16 Aug 2006 19:05:01 +0200
User-agent: Thunderbird 1.5.0.5 (X11/20060725)

Kieren MacMillan wrote:
c8^\markup {\column { {\bold "Allegro" (\smaller \general-align #Y #DOWN \note #"4" #1 = \smaller \general-align #Y #DOWN 100) } "Solo Trumpet" {\italic "  Marcato"}}}

The issue here is that \column interprets every element as an individual line.
Therefore, you need to surround each multi-element line in a \line{} command, e.g.,

\markup
{
    \column
    {
        \bold "Allegro"
        \line { (\smaller \general-align #Y #DOWN \note #"4" #1 = \smaller \general-align #Y #DOWN 100) }
        \italic "  Marcato"
    }
}

Note that \bold text and \italic text are interpreted as single items, so you don't need to \line them up.

Hi Kieren,

thank you very much for your solution, now it's perfect!
What do you think wouldn't it be better to move the "Allegro ..." a bit more left? So the two lines below could be more indented. Is it possible to move the "Allegro..." to the left?

c8^\markup {
   \column
   {
        \line { \bold "Allegro" (\smaller \general-align #Y #DOWN \note #"4" #1 = \smaller \general-align #Y #DOWN 100) }
	\italic "Solo Trumpet"
        \italic "  Marcato"
   } 
}


reply via email to

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