Another question (now I think I&#39;m at the right mailing list). <br>In the following test example, when I comment out the &quot;fms:meas&quot; process, I get the result shown in the attached &quot;without_timesigs&quot; file. If I enable the process to change the time signatures, I get the weird result shown in &quot;with_timesigs&quot;. Any idea?<br>
<br>BTW (this one I think is something relative obvious I&#39;m missing), I&#39;ve never understood why I have to use the &quot;with&quot; declaration in the first process so that I don&#39;t get all the notes on a single staff. Changing &#39;:part inst &#39; to &#39;:part p&#39; produces the &quot;last-example&quot; file.<br>
<br><br>(let ((parts &#39;((:id &quot;vln1&quot; :name &quot;Violino I&quot; :inst &quot;violin&quot;)<br>           (:id &quot;vln2&quot; :name &quot;Violino 2&quot; :inst &quot;violin&quot;))))<br>  (sprout <br>   (list (process for p in &#39;(&quot;vln1&quot; &quot;vln2&quot;)<br>
          do (sprout <br>              (process with inst = p <br>                   for k = (between 60 80)<br>                   with pat = (make-cycle &#39;(1 0.5 0.5 1/3 1/3 1/3 1/4 1/4 1/4 1/4 6))<br>                   for rhy = (next pat)<br>
                   repeat 20<br>                   do (send &quot;fms:note&quot;<br>                    :pitch k<br>                    :dur rhy<br>                    :part inst)<br>                   (wait rhy))))<br>     (process for dur in &#39;(4 6 4)<br>
           do (send &quot;fms:meas&quot;<br>                :dur dur<br>                :beat 1/4)<br>           (wait dur)))<br>   &quot;<a href="http://timesigs.ly">timesigs.ly</a>&quot; :parts parts))<br><br>Running Common Music 3.7.2 with FOMUS 0.1.17-alpha under Debian 6.0<br>
<br>Thanks in advance!<br><br>Ricardo<br>