lilypond-user
[Top][All Lists]
Advanced

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

Re: hspace in markup cancels other directives


From: Jim Cline
Subject: Re: hspace in markup cancels other directives
Date: Sun, 31 Jul 2022 08:42:59 -0400 (EDT)
User-agent: Alpine 2.20 (DEB 67 2015-01-07)

Hi Aaron, thanks for that. I thought I had tried all permutations of the order of specifications but I missed that one. It's hard to guess which one is correct.--Jim

What you have effectively done is this:

 \markup {
   \smaller { \with-color #blue { \hspace #-3 } }
   text
 }

You could explicitly group the space and text:

 \markup \smaller \with-color #blue { \hspace #-3 text }

Alternately, move the space outside the other commands:

 \markup { \hspace #-3 \smaller \with-color #blue text }



reply via email to

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