Paul Scott <[EMAIL PROTECTED]> writes:

> Why doesn't this code right align the text on the bar line?
>
> \version "2.8.1"
>
> \relative c'' {
>   a1 c f g^\markup{ \right-align{ "D.S. al Coda" } }
>   f
> }
>
> TIA,
>
> Paul Scott

If you want to align something on a bar line, you'd better use \mark.

DSalCoda = {
  \once \override Score . RehearsalMark #'break-visibility = 
#begin-of-line-invisible
  \once \override Score . RehearsalMark #'self-alignment-X = #RIGHT
  \once \override Score . RehearsalMark #'direction = #DOWN
  \once \override Score . RehearsalMark #'no-spacing-rods = ##t
  \once \override Score . RehearsalMark #'padding = #2
  \mark "D.S. al coda"
}

{
  c'1 c' \DSalCoda
}


_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to