-
Notifications
You must be signed in to change notification settings - Fork 41
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
Call from another script #8
Comments
I have experienced a similar issue. tikzjax is able to process only at the initial load but not when I try to call it inside the component. Please let me know if there is any solution to it. |
I think it would be nice to register |
@kisonecat If you don't mind, I'd like to do the job instead. What do you think? |
Unfortunately the author doesn't seem to be very active... Wich is sad as the code isn't explicitely licensed. |
I very much apologize! I'd be happy for any help, and I'm also happy to get the actual open license statement in this repo. (The licensing is a bit confusing to me since it is built off the TeX sources.) |
Hmm.. This is a tough problem. |
Looking at this some more today, the license situation is not so bad: Knuth's TeX has the "Knuth license" which just requires that the name be changed if the files are modified, but tikzjax actually uses the unchanged source and distributes "compiled" wasm so the license is really not a problem. The LaTeX stuff like TikZ is mostly LPPL or GPL or dual, so a dual LPPL/GPL licesne is the correct license since, say, tikzjax incorporates some PGF driver code. Does this sound good? |
Sounds good! I really appreciate your consideration. |
Sounds perfect ! I'm really glad you made time to get the license right ! |
I am a little bit confused, under which license this library is now available. We want to use your library in our e-learning platform, but can't do so, if it is licensed under a GPL license, since we can't put our platform under GPL at the moment. If your library would be available under a dual license in terms of LPPL and/or GPL, we could use it, since LPPL doesn't have a copyleft. |
I apologize for the confusion. Everything I've written in this repository is dual licensed under the LPPL and the GPL and I've updated package.json to reflect that in 8a00c2e. The LPPL handles people who might want to bundle this with LaTeX, and the GPL would permit someone to take the GPL'd code, modify it, and then release it under that license. |
Thanks @kisonecat for creating this. That is basically exposing this block of code (inside Line 77 in 8a00c2e
The following line could be made generic: Line 116 in 8a00c2e
Like this: var scripts = targetNode.getElementsByTagName('script'); where Also please add in the README about the instruction to build the static js file. |
It seems that tikzjax only processes the page on load.
Is there a way to call tikzjax from another script at any moment ?
Thanks !
The text was updated successfully, but these errors were encountered: