Re: setting the beatlength for sixteenth-sixtuplets

2009-11-09 Thread Stefan Thomas
Yes, thanks! Now it works! 2009/11/9 Mats Bengtsson > My solution works in version 2.13, but apparently not in 2.12. However, if > you replace "beamSettings" by "autoBeamSettings" in my proposal, it should > work in version 2.12. > > /Mats > > Stefan Thomas wrote: > >> Dear Mats, >> thanks for

Re: setting the beatlength for sixteenth-sixtuplets

2009-11-09 Thread Mats Bengtsson
My solution works in version 2.13, but apparently not in 2.12. However, if you replace "beamSettings" by "autoBeamSettings" in my proposal, it should work in version 2.12. /Mats Stefan Thomas wrote: Dear Mats, thanks for Your help, but with Your code I got the file, I've attached to this

Re: setting the beatlength for sixteenth-sixtuplets

2009-11-09 Thread Stefan Thomas
Dear Mats, thanks for Your help, but with Your code I got the file, I've attached to this mail! 2009/11/9 Mats Bengtsson > How about the following: > > > \version "2.12.2" > SSX = #(define-music-function (parser location x) (ly:music?) > #{ > \set beamSettings = #'() > > \set beatLength = #(ly

Re: setting the beatlength for sixteenth-sixtuplets

2009-11-09 Thread Mats Bengtsson
How about the following: \version "2.12.2" SSX = #(define-music-function (parser location x) (ly:music?) #{ \set beamSettings = #'() \set beatLength = #(ly:make-moment 1 8) \set tupletSpannerDuration = #(ly:make-moment 1 8 ) \times 2/3 { $x } \unset tupletSpannerDuration \unset beatLength \

Re: setting the beatlength for sixteenth-sixtuplets

2009-11-09 Thread Stefan Thomas
Well, I found a solution, but I thought, there would be an easier solution. \version "2.12.2" ST = #(define-music-function (parser location x) (ly:music?) #{ #(override-auto-beam-setting '(end 1 24 * *) 1 8) #(override-auto-beam-setting '(end 1 24 * *) 2 8) #(override-auto-beam-setting '(end

Re: setting the beatlength for sixteenth-sixtuplets

2009-11-09 Thread Paul Scott
Stefan Thomas wrote: Dear Paul, I would like to have the Sixtheenth-Triplets beamed in groups of three, altough when there is a 2/2 bar, e.g.. Ah! I haven't taken the time to understand auto beaming rules yet. I usually just manually beam some of the notes and the rest seem to follow along

Re: setting the beatlength for sixteenth-sixtuplets

2009-11-08 Thread Paul Scott
Stefan Thomas wrote: 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?) #{

setting the beatlength for sixteenth-sixtuplets

2009-11-08 Thread Stefan Thomas
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