munshkr/AbjadScore.sc

no multiple voice handle ?

simdax opened this issue · 0 comments

Hello. Is it possible to print a bigger score with multiple voices:

for example:

(
~foo = ~score.notes(\foo,
	Ppar([
		Pbind(
			\voice, \upper,
			\dur, Pseq([Pn(1/12,6),1/4,Pn(1/6, 3),1/4, Pn(1/16, 4) ], repeats: 1),
			\octave, 4,
			\degree, Pser([3, 2, 6], 16),
		)
		,
		Pbind(
			\voice, \lower,
			\dur, Pseq([Pn(1/12,6),1/4,Pn(1/6, 3),1/4, Pn(1/16, 4) ], repeats: 1),
			\octave, 4,
			\degree, Pser([3, 2, 6], 16),
		)	
	]);
)
)