-
Notifications
You must be signed in to change notification settings - Fork 11
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
Add option for derivative at a certain point #28
Comments
Thanks, the above snippet is not merely a workaround, it's actually the intended usage. I feel it's better not to couple different semantics together, but I welcome more inputs in this to convince me - no promise:) |
Not sure if this is possible with typst, but could one declare Btw, this example should perhaps also be added in the "derivative" section. |
Therefore I guess the activate character is impossible without changing the typst compiler. Besides, I've updated #28 (comment) with 2 example functions. Hope they satisfy your need. |
Thanks! As another data point, the https://typst.app/universe/package/diverential package has an
But I will not argue further if you think the eval method is already sufficient 🦊 |
One sometimes needs to specify the point / time at which one takes the derivative, using a vertical bar.
In typst, this can be approximated using
which kind of works but looks ugly since the bar is too short. It would be nice if one could use something like
dv(,t, t=0)
ordv(,t, at=(t=0))
which automatically yields a proper rending of the bar.Looking at the code, typst seems to use the method stretch_vertical to increase the length of lines/bars.
The text was updated successfully, but these errors were encountered: