Skip to main content
Topic: Quintuplets? (Read 2003 times) previous topic - next topic

Quintuplets?

I've made good use of the triplet tool on NWC.  Is there a way to score quintuplets?

Re: Quintuplets?

Reply #1
Ack...  Please disregard I figured this out myself.  There were five 8th notes so I just split the 1st three into a triplet and left the remaining two alone.  It's not perfect but at least the measures line up.

 

Re: Quintuplets?

Reply #2
Try this:

Code: [Select · Download]
!NoteWorthyComposerClip(2.751,Single)
|Clef|Type:Treble
|Tempo|Tempo:120|Pos:9
|TimeSig|Signature:4/4
|Note|Dur:4th,Slur|Pos:-1
|Note|Dur:4th|Pos:-3
|Note|Dur:4th|Pos:-2
|Note|Dur:4th|Pos:-1
|Bar
|TimeSig|Signature:5/4|Visibility:Never
|Tempo|Tempo:150|Pos:10|Visibility:Never
|User|TupletMarks.fso|Pos:5|span:5|number:5
|Note|Dur:4th,Slur|Pos:-2
|Note|Dur:4th,Slur|Pos:-1
|Note|Dur:4th,Slur|Pos:0
|Note|Dur:4th,Slur|Pos:1
|Note|Dur:4th,Slur|Pos:2
|Bar
|TimeSig|Signature:4/4|Visibility:Never
|Tempo|Tempo:120|Pos:9|Visibility:Never
|Note|Dur:Whole|Pos:3
!NoteWorthyComposerClip-End

You need to have the user object tupletmarks.fso installed. The tempo change is figured by multiplying the regular tempo by the value of the tuplet (e.g., in this case we have 5 notes in the time of 4, so you need to multiply the regular tempo by 5/4). Note that this is not necessarily the same as the hidden time sig, although it is in this case. However, if your quintuplet was 5 8th notes in the time of a half note in 4/4 rhythm, you'd still need to multiply by 5/4, because it would still be 5 notes in the time of 4 (5 8ths in the time of 4 8ths).


Re: Quintuplets?

Reply #4
You may also find this method to be useful:
Code: (nwc) [Select · Download]
!NoteWorthyComposerClip(2.751,Single)
|Clef|Type:Treble
|Tempo|Tempo:120|Pos:9
|TimeSig|Signature:4/4
|Note|Dur:4th,Slur|Pos:-1
|Note|Dur:4th|Pos:-3
|Note|Dur:4th|Pos:-2
|Note|Dur:4th|Pos:-1
|Bar
|User|TupletMarks.fso|Pos:5.5|span:9|number:5
|Marker|Pos:0|Target:Triplet|Visibility:Never
|Note|Dur:4th,Triplet=First,Slur|Pos:-2
|Rest|Dur:32nd,Dotted,Triplet,Slur|Visibility:Never
|Note|Dur:4th,Triplet,Slur|Pos:-1
|Rest|Dur:32nd,DblDotted,Triplet,Slur|Visibility:Never
|Note|Dur:4th,Triplet,Slur|Pos:0
|Rest|Dur:32nd,Dotted,Triplet,Slur|Visibility:Never
|Note|Dur:4th,Triplet,Slur|Pos:1
|Rest|Dur:32nd,DblDotted,Triplet,Slur|Visibility:Never
|Note|Dur:4th,Triplet,Slur|Pos:2
|Rest|Dur:32nd,Dotted,Triplet=End,Slur|Visibility:Never
|Bar
|Note|Dur:Whole|Pos:3
!NoteWorthyComposerClip-End
Registered user since 1996