Jump to content

tied length values


Recommended Posts

Hi,

I want the following rhymical structure of tied length values ( see attached .jpg). When I write it like this:

(setf laengen-oben-zwei '((q. e tie) (q 3q 3q_3q_q. e tie) (q. e_h tie) (e q._h)))

the ties are ignored by the mapping

see:

(setf laengen-oben-zwei '((q. e tie) (q 3q 3q_3q_q. e tie) (q. e_h tie) (e q._h)))
(setf toene-oben-zwei '(c4 d4 e4 fs4 gs4 bb4))

(make-omn 
 :length laengen-oben-zwei
 :pitch toene-oben-zwei)

how can I express the length-values so that the ties are taken in account?

thanks for a hint!

best

oleBildschirmfoto_2015-07-07_um_16.51.21.th

Link to comment
Share on other sites

TIE can't be used in length alone.

TIE is part of OMN form (grammar).

You need to rewrite your lengths without the TIE attribute.

You could do:

(setf laengen-oben-zwei '(q. e_q 3q 3q_3q_q. e_q. e_h_e q._h))
(setf toene-oben-zwei '(c4 d4 e4 fs4 gs4 bb4))

(setf mat
      (make-omn 
       :length laengen-oben-zwei
       :pitch toene-oben-zwei))

(omn-to-time-signature mat '(4 4))

Of course you can use the time signature on the DEF-SCORE level :-)

Edited by opmo
Link to comment
Share on other sites

TIE can't be used in length alone.

TIE is part of OMN form (grammar).

You need to rewrite your lengths without the TIE attribute.

like this?

(setf laengen-oben-zwei '((q. e_q 3q 3q_3q_q. e_q. e_h_e q._h)))

and than define the 4/4 in the score section?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

Terms of Use Privacy Policy