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
Hello,
I'd like to align the following system of equations : \\matrix{ a_n + b_n &=& \\alpha + \\epsilon \\\\ c_n &=& \\beta}
\\matrix{ a_n + b_n &=& \\alpha + \\epsilon \\\\ c_n &=& \\beta}
So that terms on left aligned right and terms on right align left, something like this (it's a trick using paint)
Any idea to do that ?
Best regards.
The text was updated successfully, but these errors were encountered:
So far, we don't support right-alignment in matrices at all. It's not that hard to add, just we don't have the corresponding syntax and code.
Something similar to your example is possible to build using manually aligned symbols, like this:
\begin{align} a_n + & b_n = \alpha +\epsilon \\ & c_n = \beta \end{align}
But a proper support for alignment in cells would be of course much better.
Sorry, something went wrong.
Hi @ForNeVeR ,
Thanks a lot ! That works fine with your code !
No branches or pull requests
Hello,
I'd like to align the following system of equations :
\\matrix{ a_n + b_n &=& \\alpha + \\epsilon \\\\ c_n &=& \\beta}
So that terms on left aligned right and terms on right align left, something like this (it's a trick using paint)
Any idea to do that ?
Best regards.
The text was updated successfully, but these errors were encountered: