We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If you use regular numbers in combination with Unitful inside an expression, then unnecessary @u_str characters appear in Pluto:
Unitful
@u_str
using Unitful, Latexify, UnitfulLatexify; begin a = 2u"m" @latexdefine c = sqrt(a^2 + 5u"m"^2) end
The text was updated successfully, but these errors were encountered:
You need to evaluate 5u"m" before latexifying: @latexify sqrt(a^2 + $(5u"m")^2).
5u"m"
@latexify sqrt(a^2 + $(5u"m")^2)
I agree this is a bit inconvenient, but it's a result of how macros work.
Sorry, something went wrong.
No branches or pull requests
The issue
If you use regular numbers in combination with
Unitful
inside an expression, then unnecessary@u_str
characters appear in Pluto:How to reproduce
The text was updated successfully, but these errors were encountered: