lilypond-user
[Top][All Lists]
Advanced

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

Re: Marks under the staff


From: Simon Bailey
Subject: Re: Marks under the staff
Date: Mon, 18 Feb 2008 10:27:53 +0100

francisco,

On Feb 17, 2008, at 9:18 PM, Francisco Vila wrote:
is there a proper way to place a given \mark such as "segue coro",
"DS.al fine" etc under the staff, and right-aligned to the final
barline?

Doesn't it work if you just \override the direction property?

The problem is to have them UNDER the staff system. Sorry if it is too
naive but I'm stuck with this.

that is what graham was suggesting. try the following snippet. all of this information can be found in the NM, section 1.8.1.4 (Text Marks), redirected from section1.2.5.4 (Rehearsal Marks) with the reference "Common Tweaks". From there you can access the internal properties of RehearsalMark, which shows you the property #'direction, taking the values #UP, #CENTER or #DOWN.

<<<<
dsalf = {
\once \override Score.RehearsalMark #'break-visibility = #begin-of- line-invisible
        \once \override Score.RehearsalMark #'self-alignment-X = #right
        %% THIS IS THE PROPERTY GRAHAM MENTIONED:
        \once \override Score.RehearsalMark #'  direction = #DOWN
        \mark "D.S. al Fine"
}

\relative c'{
        c d e f
        \bar "||"
        \mark "Fine"
        g a h c
        \bar "|."
        \dsalf
}
>>>>

hth,
sb




reply via email to

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