lilypond-user
[Top][All Lists]
Advanced

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

Re: Overlap markup


From: Jim Long
Subject: Re: Overlap markup
Date: Thu, 10 Oct 2013 13:09:04 -0700
User-agent: Mutt/1.5.21 (2010-09-15)

On Thu, Oct 10, 2013 at 12:04:06PM -0700, EdBeesley wrote:
> Hi again everyone, I'm making a title page and I'd like one line of text to
> overlap another line (see attached png). However nothing I've tried (\raise
> or \translate) will force the text above the previous line. This is the code
> I'm using at the moment:
> 
> \bookpart {
>   \markup 
> { 
>         \fill-line 
>         { 
>                 \column 
>                 { 
>                         \raise #-8 
>                         \center-align 
>                         { 
>                                 \fontsize #13 "Geir Rafnsson" 
>                                 \hspace #1
>                                 \hspace #1 
>                                 \fontsize #16 \override #'(font-name .
> "Aniron") "??kjur" 
>                                 \hspace #1
>                                 \fontsize #7 "      (Extreme Measures)"
>                                 
>                         } 
>                 } 
>         } 
> } 
> }

baseline-skip can go to zero, but has no effect beyond 0.  That
is, you can make them touch, but not overlap.

Negative \vspace is probably what you want:

\markup {
        \fill-line {
                \column \center-align {
                        \fontsize #13 "Geir Rafnsson"
                        \vspace #-1
                        \fontsize #7 "(Extreme Measures)"
                } % column
        } % fill-line
} % markup

Jim



reply via email to

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