Jump to content

Recommended Posts

There appears to be an issue in omitting dyads (chords) in the notation viewer when attaching attribute 'ped, as in this example:

 '((q c4 e3e4 ped) (q g3 c3c4 ped h e4 ped) (q  c4 ped g4 e4e5 ped))

Similar issues occur when using the attribute-series function:

(setf mat '((q c4 e3e4) (q g3 c3c4 h e4) (q c4 g4 e4e5)))
(attribute-series '((- 1) (ped 2) (ped 4) (ped 1))  mat)

 

Link to comment
Share on other sites

A quick comment on my post earlier post.

 

When using the attribute-series function, the last dyad is not omitted, and the ped marking is attached and displayed correctly if there's a rest in the last measure. However, when there's no rest at the end of the last measure, the ped marking is not attached.

 

 

(setf mat '((q c4 e3e4) (q g3 c3c4 h e4) (q c4 g4 e4e5)))
(attribute-series '((- 1) (ped 2) (ped 4) (ped 2)) mat)
=> ((q c4 mf e3e4 ped) (q g3 c3c4 ped h e4 ped) (q c4 ped g4 e4e5))

(setf mat.r '((q c4 e3e4) (q g3 c3c4 h e4) (q c4 g4 e4e5 -q)))
(attribute-series '((- 1) (ped 2) (ped 4) (ped 2)) mat.r)
=> ((q c4 mf e3e4 ped) (q g3 c3c4 ped h e4 ped) (q c4 ped g4 e4e5 ped -))

 

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