답변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}
.
문안 인사!