lilypond-user
[Top][All Lists]
Advanced

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

Re: vertical alignment - how to bottom-align something?


From: James Bailey
Subject: Re: vertical alignment - how to bottom-align something?
Date: Wed, 12 Jan 2011 00:32:58 +0100

On Jan 11, 2011, at 11:01 PM, Janek Warchoł wrote:

> 2011/1/11 Neil Puttock <address@hidden>:
>> 
>> http://lilypond.org/doc/v2.12/Documentation/user/lilypond/Align#index-_005cdir_002dcolumn-1
>> 
>> Cheers,
>> Neil
> 
> Hi Neil,
> 
> unfortunately i cannot see how dir-column can help me :(
> Look at this:
> 
> someMarkup = \markup {
>    \column {
>        "bla" "ble" "bli" "blo" "blu"
>      }
>  }
> 
> \markup {
>    \line {
>        \someMarkup
>        \override #`(direction . ,UP)
>        \dir-column {
>            "foobar"
>          }
>      }
>  }
> 
> "foobar" is still vertically aligned to the top of the someMarkup, not
> to the bottom.
> 
> Maybe i haven't made myself clear. I want to achieve this:
> 
> bla
> ble
> bli
> blo
> blu foobar
> 
> without messing with all the bla's. I mean, the
> bla
> ble
> bli
> blo
> blu
> should be treated as one markup.
> 
> Any ideas?
> 
> thanks,
> Janek
\markup {
   \general-align #Y #-1 {
      \column {
         "bla" "ble" "bli" "blo" "blu"
      }
      "foobar"
   }
}




reply via email to

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