Hi, Roman:
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.
Good luck,
Kieren.
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user