![改變方程式系統中變數的順序?](https://rvso.com/image/390962/%E6%94%B9%E8%AE%8A%E6%96%B9%E7%A8%8B%E5%BC%8F%E7%B3%BB%E7%B5%B1%E4%B8%AD%E8%AE%8A%E6%95%B8%E7%9A%84%E9%A0%86%E5%BA%8F%EF%BC%9F.png)
答案1
正如我在之前的評論中指出的那樣,該systeme
包目前不允許您使用常量啟動左側材料。
不過,透過使用環境來實現格式化目標並不太困難array
。
\documentclass{article}
\usepackage{array} % for '\newcolumntype' macro
\newcolumntype{C}{>{{}}c<{{}}} % for columns with binary and relational operators
\newenvironment{myarray}[1]{%
\setlength\arraycolsep{0pt}
\left\{ \begin{array}{#1}}{%
\end{array} \right.}
\begin{document}
\[
\begin{myarray}{rCrCrCl}
3&+&2t&+& s&=&x\\
2& & &+& s&=&y\\
1&+& t&+&2s&=&z
\end{myarray}
\]
\end{document}
答案2
感謝您的回答!
添加一個[xxxx]
來\systeme{3+2t+s=x,s+2=y,1+t+2s=z}
整理它。
在這種情況下\systeme[1ts]{3+2t+s=x,s+2=y,1+t+2s=z}
。
問候!