答案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}
。
問候!