lilypond-user
[Top][All Lists]
Advanced

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

Re: Stacking order TextScript / FiguredBass


From: Mats Bengtsson
Subject: Re: Stacking order TextScript / FiguredBass
Date: Mon, 14 Jan 2008 16:55:12 +0100
User-agent: Thunderbird 2.0.0.5 (X11/20070716)

One answer is that you can't, since the text script will belong to the Staff
and the full Staff context will appear below the full FiguredBass context.

However, there are some possibilities to get what you want:

1. Move the text script using extra-offset, which means that LilyPond
 won't in any way adjust the placement of anything else to this movement.
 The pro is that you indeed can move it above the figure bass, the cons is
it won't take the moved text script into account when calculating the distance
 to the score line above, for example.

2. Typeset the figure bass within the Staff context, i.e.
\version "2.11.37"
\score {
\new Staff = mystave <<
 { c'4^"blabla" d e f }
\figuremode { <6>4 <5> <6 4> <5 3> }
 >>
}

or

\version "2.11.37"
\score {
<<
\new Staff = mystave { c'4^"blabla" d e f }
\context Staff = mystave \figuremode { <6>4 <5> <6 4> <5 3> }
>>
}


    /Mats

Michael Käppler wrote:
Hi all,
how can I place TextScripts above a FiguredBass context?

Following example:

\version "2.11.37"

\score {
<<
 \new FiguredBass \figuremode { <6>4 <5> <6 4> <5 3> }
 \new Staff { c'4^"blabla" d e f }
>>
}

Thanks for any advice,
Michael


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

--
=============================================
        Mats Bengtsson
        Signal Processing
        Signals, Sensors and Systems
        Royal Institute of Technology
        SE-100 44  STOCKHOLM
        Sweden
        Phone: (+46) 8 790 8463                         
       Fax:   (+46) 8 790 7260
        Email: address@hidden
        WWW: http://www.s3.kth.se/~mabe
=============================================





reply via email to

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