[Tex/LaTex] system of equation without the brackets? Possible

bracesbracketsequations

Hi can i make a system of equations like the one below

\[
\systeme{2y+4x=9, 3x-2y=10}
\]

But WITHOUT the bracket (braces) behind the equations?

Best Answer

Use \sysdelim.. to remove the left and right delimiters.

\documentclass[preview,border=12pt,varwidth]{standalone}
\usepackage{systeme,mathtools}

\syscodeextracol{\quad\hfill}{\hfill}
\sysautonum*{(\uppercase\expandafter{\romannumeral*})}
\sysdelim..

\begin{document}
\abovedisplayskip=0pt\relax% don't use this line in your production.
\[
\systeme{
2y+4x=91,
3x-2y=10}
\]
\end{document}

enter image description here