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
Is it be possible to have something similar to the alignat LaTeX environment working in Franklin pages ? It works on Jupyer notebook but if I write
alignat
$$ \begin{alignat}{7} 3x_1 &&\; + \;&& 2x_2 &&\; - \;&& x_3 &&\; = \;&& 1 & \\ 2x_1 &&\; - \;&& 2x_2 &&\; + \;&& 4x_3 &&\; = \;&& -2 & \\ \end{alignat} $$
it renders as
\[ \begin{alignat}{7} 3x_1 &&\; + \;&& 2x_2 &&\; - \;&& x_3 &&\; = \;&& 1 & \\ 2x_1 &&\; - \;&& 2x_2 &&\; + \;&& 4x_3 &&\; = \;&& -2 & \\ -2x_1 &&\; + \;&& 1x_2 &&\; - \;&& 2x_3 &&\; = \;&& 0 & \end{alignat} \]
hence as it seems giving up on rendering it with LaTeX
The text was updated successfully, but these errors were encountered:
Do you have an error like the following in your browser console:
KaTeX auto-render: Failed to parse ` \begin{alignat}{7} 3x_1 &&\; + \;&& 2x_2 &&\; - \;&& x_3 &&\; = \;&& 1 & \\ 2x_1 &&\; - \;&& 2x_2 &&\; + \;&& 4x_3 &&\; = \;&& -2 & \end{alignat} ` with ParseError: KaTeX parse error: No such environment: alignat at position 8:
Then that would suggest that your KaTeX version is too old. You can check with (in your browser console):
> katex.version "0.11.0"
(this is e.g. for the Franklin docs)
From the KaTeX Changelog it seems that alignat was introduced in v0.13.0.
Sorry, something went wrong.
Indeed, thanks for the help!
No branches or pull requests
Is it be possible to have something similar to the
alignat
LaTeX environment working in Franklin pages ?It works on Jupyer notebook but if I write
it renders as
hence as it seems giving up on rendering it with LaTeX
The text was updated successfully, but these errors were encountered: