On 11/08/12 18:24, Thomas Morley wrote:
2012/8/11 Nick Payne <nick.pa...@internode.on.net>:
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
lilypond-user@gnu.org
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...

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to