-
-
Notifications
You must be signed in to change notification settings - Fork 285
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to add numbered musical notation? #980
Comments
It would be possible to extend abcjs to do this, but it isn't available out of the box. There is a way to run abc through the parser only without doing output. Then you have a structure you could step through to do your own drawing. So, what I'd do:
Then write a function that steps through |
I still don't quite understand. Will you improve this feature on your end |
i need this function too |
I need this function too. I'm using joplin, and which use abcjs. May you make it is available out of the box? |
@paulrosen I would like to incorporate numbered musical notation. Could you please assign this task to me?
Which approach would be more advantageous? |
According to the picture, there isn't anything in common with the drawing of standard notation so I think the way to handle it is probably to have a separate drawing function. If you want to render any existing abc file as numbered notation I'd suggest the first option of retaining the existing code notation. Then you can do this:
to take advantage of the existing parser. Then write a function with a signature something like this:
That function would look for the element specified in In other words, you don't need to modify any of the existing abcjs code - just write your own function to extend it. |
Thank you, I will try it today. |
ABCjs is great,I would like to add a notation display function that can be switched to display with the staff notation. I'm not sure if this feature is available
The text was updated successfully, but these errors were encountered: