lilypond-user
[Top][All Lists]
Advanced

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

Re: Vertical positioning of rehearsal mark and repeat alternative


From: Nick Payne
Subject: Re: Vertical positioning of rehearsal mark and repeat alternative
Date: Sat, 11 Aug 2012 18:51:16 +1000
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:14.0) Gecko/20120714 Thunderbird/14.0

On 11/08/12 18:24, Thomas Morley wrote:
2012/8/11 Nick Payne <address@hidden>:
With a rehearsal mark on the barline that ends a repeat alternative, how do
I position the mark immediately above the barline and below the volta
bracket? I've tried playing around with the outside-staff-priority of
various objects such as VoltaBracket, TextScript, and RehearsalMark without
being able to move the mark below the bracket.

\version "2.15.42"
\relative c'' {
     \repeat volta 2 { c1 c }
     \alternative {
         { c }
         { c    }
     }
     \mark\markup\normalsize { \musicglyph #"scripts.coda" }
     c
}


_______________________________________________
lilypond-user mailing list
address@hidden
https://lists.gnu.org/mailman/listinfo/lilypond-user
Hi Nick,

I had no problems adjusting the 'outside-staff-priority.
Additionally I inserted \with-dimensions ... into the markup to avoid
moving the VoltaBracket too much.

\version "2.15.42"

\relative c'' {
     \repeat volta 2 { c1 c }
     \alternative {
         { c }
         { c    }
     }
     \override Score.RehearsalMark #'outside-staff-priority = #599
     \mark\markup\with-dimensions #'(-0.1 . 0.1) #'(-1 . 0.1)
\normalsize { \musicglyph #"scripts.coda" }
     c
}

Ah, thanks. The problem was that I had used \override RehearsalMark rather than \override Score.RehearsalMark...



reply via email to

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