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: Thomas Morley
Subject: Re: Vertical positioning of rehearsal mark and repeat alternative
Date: Sat, 11 Aug 2012 10:24:19 +0200

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
}

HTH,
  Harm



reply via email to

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