Latex systeme not working on pluto md

Hello, good afternoon,

Is it possible use the command systeme to draw linear equations in pluto md? In my tests, systeme is not recognized.

md"""

$$\systeme{x+y=7,-x+3y=1}$$
"""

that’s a package, of course you don’t have access to it because idk, mathjax can’t install every single package?

try this alternative:

md"""
```math
    \begin{cases}
      x+y=7\\
      -x+3y=1
    \end{cases}
```
"""
1 Like

Already had solve that way, but thanks explaining that we had no systeme package. :grinning: