MathTeXEngine.jl icon indicating copy to clipboard operation
MathTeXEngine.jl copied to clipboard

A latex math mode engine in pure Julia.

Results 38 MathTeXEngine.jl issues
Sort by recently updated
recently updated
newest added

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...

layout

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...

parser
layout

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...

parser
layout

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...

parser
layout

LaTeX itself allows to choose fonts for typeset maths. Is there a way to do that in LaTeXStrings / MathTexEngine.jl as well?

help wanted

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: ![image](https://user-images.githubusercontent.com/29561456/147595445-851ac73b-6cde-4a36-957e-5ee722e196be.png) Would...