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

> 2011/1/11 Neil Puttock <n.putt...@gmail.com>:
>> 
>> 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"
   }
}


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to