システムを使用した線形方程式の間隔/位置合わせ

システムを使用した線形方程式の間隔/位置合わせ

以下に、解が示されている線形方程式の連立図を示します。(最初の連立方程式を参照してください。) 左側では、最初の行の $x$ と 2 番目の行の $y$ が近すぎることに注意してください。2 番目の連立方程式の $x$ と $y$ と比較してください。

質問:最初のシステムで $x$ と $y$ の位置を 2 番目のシステムの位置と一致するように配置することは可能ですか?

を使用しようとしました\phantomが、役に立ちませんでした。2 番目のシステムと比較すると、スペースが大きすぎます。

\documentclass[10pt]{amsart}

\usepackage{amsmath, amssymb, amsfonts, amsthm}
\usepackage{systeme}

\begin{document}
\title{Title}
\author{Author}
\date{\today}
\maketitle

\noindent Here is a system of linear equations whose solution is shown:
\[  
    \systeme[xyz]{x - z = 1, y + 2z = 3, z = 0}
    \quad \longrightarrow \quad
    \systeme*[xyz]{x = 1, y = 3, z = 0}
    \quad \longrightarrow \quad
    \text{point $(1,1,0)$.}
\]
The $x$ and $y$ on the left side are too close. Compare it to this system:
\[  
    \systeme[xyz]{x + y - z = 1, y + 2z = 3, z = 0}
    \quad \longrightarrow \quad
    \systeme*[xyz]{x = -2, y = 3, z = 0}
    \quad \longrightarrow \quad
    \text{point $(-2,1,0)$.}
\]
\end{document}

ここに画像の説明を入力してください

答え1

A は\phantomこれを機能させるのに役立ちます。2 番目の例の表記を最初の例と一致するように調整したので、配置が一致していることがわかります。

\documentclass[10pt]{amsart}

\usepackage{amsmath, amssymb, amsfonts, amsthm}
\usepackage{systeme}

\begin{document}
\title{Title}
\author{Author}
\date{\today}
\maketitle

\noindent Here is a system of linear equations whose solution is shown:
\[  
    \systeme[xyz]{x \phantom{{}+{}} - z = 1, y + 2z = 3, z = 0}
    \quad \longrightarrow \quad
    \systeme*[xyz]{x = 1, y = 3, z = 0}
    \quad \longrightarrow \quad
    \text{point $(1,1,0)$.}
\]
The $x$ and $y$ on the left side are too close. Compare it to this system:
\[  
    \systeme[xyz]{x + y - z = 1, y + 2z = 3, z = 0}
    \quad \longrightarrow \quad
%    \systeme*[xyz]{x = -2, y = 3, z = 0}
    \systeme*[xyz]{x = 1, y = 3, z = 0}
    \quad \longrightarrow \quad
    \text{point $(1,1,0)$.}
%    \text{point $(-2,1,0)$.}
\]
\end{document}

ここに画像の説明を入力してください

関連情報