2009/7/24 Mark Polesky <[email protected]>:

> Well, it looks very odd to my musical eye, but you could play around
> with something like this:
>
> \version "2.13.2"
>
> \relative c''' {
>  \override Script #'Y-offset =
>    #(lambda (grob)
>       (if (= 1 (ly:grob-property grob 'direction 1)) 5 -3))
>  c_- b_- a_- g_- | c^- b^- a^- g^-
> }

Assuming Alexander wants the articulations to be equidistant from the
stave when placed up or down, it's easier to turn off
'quantize-position and set 'staff-padding (these properties are
mutually exclusive for Scripts):

\relative c''' {
  \override Script #'quantize-position = ##f
  \override Script #'staff-padding = #3
  c_- b_- a_- g_- | c^- b^- a^- g^-
}

Regards,
Neil


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

Reply via email to