web-dev-qa-db-ja.com

連立方程式をどのように揃えますか?

すべての変数と演算子がまっすぐ下がるように、これらの方程式を並べます。私はいくつかの異なるテクニックを試しましたが、それを機能させることができませんでした。

enter image description here

いいえ:

\begin{align*}
  x+y+z=1 \\ 
  x+y+z=\frac{5}{2} \\ 
  x+y+z=5
\end{align*}

フィドル

4
user875234

使用する &=は次と等しいことを意味します。

\begin{align*}
  x+y+z &= \,1 \\ 
  x+y+z &= \frac{5}{2} \\ 
  x+y+z &= \,5
\end{align*}

aligned and spaced over a tiny bit

これらは数学モードで使用できます。

\; - a thick space
\: - a medium space
\, - a thin space     <-- used this here in front of the simple numbers
\! - a negative thin space

ソース: http://www.emerson.emory.edu/services/latex/latex_119.html

align*環境f.e.ここ: https://en.wikibooks.org/wiki/LaTeX/Advanced_Mathematics#align_and_align *

4
Patrick Artner

変数と値を自動調整する線形方程式のシステム用のパッケージsystemeがあります-変​​数を検出します。

標準的なセットアップの使用では、あなたはただ書くでしょう

\begin{equation*}
  \systeme{
  x+y+z = 1,
  x+y+z = \frac{5}{2},
  x+y+z = 5
  }
\end{equation*}

Sample output

または

\begin{equation*}
  \systeme{
  3x +7z = 20,
  y - 17z = -3,
  24x + 15y = 7
  }
\end{equation*}

Second general example

あなたの好みに合うかもしれません。ブラケットは、\systemeコマンドの前に空の区切り文字を指定して削除できます。

\sysdelim..

.は空のプレースホルダーです。\sysdelimは、左右の区切り文字を指定するため、2つ必要です)。分数を大きくするには、amsmathパッケージ(既にロードしている)の\dfracを使用できますが、行間隔を調整する必要があります。

Second sample

\documentclass{article}

\usepackage{amsmath,systeme}

\begin{document}

\begin{equation*}
  \systeme{
  x+y+z = 1,
  x+y+z = \frac{5}{2},
  x+y+z = 5
  }
\end{equation*}

No delimeter, displaystyle fraction and line spacing
\begin{equation*}
  \sysdelim..\systeme{
  x+y+z = 1,
  x+y+z = \dfrac{5}{2}\rule[-3ex]{0pt}{7ex},
  x+y+z = 5
  }
\end{equation*}

\end{document}

あるいは、スケーリング係数であるコマンド\syslineskipcoeffを使用して、すべての行の間に余分なスペースを追加できます。

Third sample

\documentclass{article}

\usepackage{amsmath,systeme}

\begin{document}

No delimeter, displaystyle fraction and line spacing
\begin{equation*}
  \sysdelim..\syslineskipcoeff{2}\systeme{
  x+y+z = 1,
  x+y+z = \dfrac{5}{2},
  x+y+z = 5
  }
\end{equation*}

\end{document}
9
Andrew Swann

単に&各行の前に目的の出力が表示されます。

\begin{align*}
  &x+y+z=1 \\ 
  &x+y+z=\frac{5}{2} \\ 
  &x+y+z=5
\end{align*}
4
ichantz