MathTeXEngine.jl
MathTeXEngine.jl copied to clipboard
A latex math mode engine in pure Julia.
Thank you for working on this! But, how should the not equal to character (≠) be typed? I am using LaTeX with CairoMakie.jl. Typing `\neq` gives an empty square and...
As cursive leans to the right, it looks too tight when normal text follows, and too loose when normal text precedes it. In lieu of a better mechanism, maybe a...
Add support for line break e.g. `L"a = \\0"` Reported in https://github.com/JuliaPlots/Makie.jl/issues/1131 Need to decide what to do about alignment. The simplest is probably to just center everything and hope...
This doesn't seem to be supported right now? ``` julia> texparse(raw"\sqrt[3]{2}") ERROR: TeXParseError: end of string reached with unfinished argument_gatherer at position 10 (string index 10) \sqrt[3]{2} ^ Stack before...
I don't know whether this is the right place to report this. When manually typesetting the exponents in Makie (to circumvent https://github.com/JuliaPlots/Makie.jl/issues/1296), the spacing between the minus sign and the...
LaTeX itself allows to choose fonts for typeset maths. Is there a way to do that in LaTeXStrings / MathTexEngine.jl as well?
Superseed #50 (I did not find how I could easily update it directly) and is a first step into implementing #48. This is still missing tests. Currently the parsing results...
Original issue: https://github.com/JuliaPlots/Makie.jl/issues/1560 We should have a simple way to change the font of the the normal text in the `LaTeXStrings`. I'm thinking of something like `generate_texelements(latex_string, textfont="NewComputerModern")`. This is...
Hi @Kolaru , I was tinkering with MathTeXEngine and was trying to render a matrix. Using `LaTeXStrings.jl`, I wrote the following snippet: ```julia latex_string = L""" $\begin{matrix} 1 & 2...
Hey @Kolaru , This is an amazing package! Thanks to @davibarreira, we have it working with enabling LaTeX to work within Luxor.jl to make really professional looking diagrams:  Would...