January 19, 20241 yr beautiful, Stephane ! How do you make that section numbers (1, 2, 3, ) in the score sections ? Best ! Julio
January 20, 20241 yr Author On 1/19/2024 at 11:21 PM, JulioHerrlein said: beautiful, Stephane ! How do you make that section numbers (1, 2, 3, ) in the score sections ? Best ! Julio Hi Julio, i made a fonction to add rehearsal marks (reh attribute) even on empty bars. Here it is: (defun rea-mark (omn-exp) "Ajoute un repere de repetition meme sur les mesures vides" (if (event-restp (nth-event 0 omn-exp)) (position-insert 1 'reh omn-exp :section '(0)) (edit-events '((1 1 'reh :articulation)) omn-exp))) Stephane
Create an account or sign in to comment