Dear community,
I would like to define a function, that allows me to set the beat-length to
1/8 for 16th-triplets.  And I would like, if it could work for every kind of
bar.
I tried it with:
\version "2.12.2"
SSX = #(define-music-function (parser location x) (ly:music?)
#{
   \set beatLength = #(ly:make-moment 1 8)
  \set tupletSpannerDuration = #(ly:make-moment 1 8 )
  \times 2/3 { $x }
  \unset tupletSpannerDuration
 \unset beatLength
#})

\relative c' {
  \SSX { c16 d e f e d e f g a g f a b c d c b }
}
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to