Hi,
In the following code the mf of the first bar won't show up.
Any other dynamic symbol in the first bar will work as expected.
Are you able to reproduce this on your system?
All the best,
Erik
(setf omn (make-omn
:length '((1/8 1/8) (1/2 1/2) (1 1))
:pitch '((g4) (d5) (f5))
:velocity '((mf) (f) (mf))
)
)
=> ((e g4 g4) (h d5 f d5) (w f5 mf f5)) ; no dynamic symb in first bar!
(setf omn (make-omn
:length '((1/8 1/8) (1/2 1/2) (1 1))
:pitch '((g4) (d5) (f5))
:velocity '((pp) (f) (mf))
)
)
=> ((e g4 pp g4) (h d5 f d5) (w f5 mf f5)) ; now the dynamic symb shows up in the first bar!