我如何在系统中对齐方程式? LaTeX

问题描述 投票:0回答:1

如何通过未知数量的列均衡系统中的方程。

For example

  x1-2*x2     =4
     6*x2  -x3=7
3*x1     +8*x3=2
latex alignment
1个回答
2
投票

您可以使用包systeme

\documentclass{article}
\usepackage{systeme}
\begin{document}
\systeme{
  x_1-2x_2     =4 ,
     6x_2  -x_3=7 ,
3x_1     +8x_3=2}
\end{document}

Result of the above code

© www.soinside.com 2019 - 2024. All rights reserved.