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
In my opinion latexify(3e-14) should display $3.0 \cdot 10^{-14}$, not $3.0e-14$
latexify(3e-14)
The text was updated successfully, but these errors were encountered:
Agreed.
There is fmt=FancyFormatter(), but I also think this should be the default.
fmt=FancyFormatter()
Sorry, something went wrong.
One more +1 here, this is actually not only a formatting issue, but a correctness issue since the rendered latex in this case
julia> latexify("1e-7 - e") L"$1.0e-7 - e$"
equal to -7, according to the latex rendered below $1.0e-7 - e$
Ok, agreed. This should be the default.
No branches or pull requests
In my opinion$3.0 \cdot 10^{-14}$ , not $3.0e-14$
latexify(3e-14)
should displayThe text was updated successfully, but these errors were encountered: