tex

tex の equation 環境で複数行の数式を入力する(\split を使う)

投稿日:

\equation の中で \split を使う。

\tag を使って、自分で定義した式番号を使える。

\begin{equation}
    \begin{split}
        a \\ b \\ c
    \end{split}
    \tag{式番号1}
\end{equation}

結果

-tex
-

執筆者:


comment

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

関連記事

no image

tex でノットイコールの記号を入力する方法

ノットイコールの記号を書くには、\ne を使う。 例 $x \ne y$ 結果

no image

tex で表を横にぶち抜きしたものを作成する方法

multicolumn を使う。 例 \begin{center} \begin{table}[] \begin{tabular}{|c|c|c|c|} \hline \multicolumn …

no image

tex で上極限・下極限の記号を入力する

\amsmath パッケージを使い、\varlimsup, \varliminf を使う。 例 \usepackage{amsmath} \usepackage{amssymb} \begin{doc …

no image

tex でスラッシュを大きくする

tex でスラッシュ(/)を大きく表示したいときがある。 このとき、\left. または \right. (ドットは表示されない)と、\right/ や \left/ (スラッシュ記号を表示)を組み合 …

no image

tex で、微分の縦棒を入力する方法

ある点での微分を表示したい場合には、\left. と \right| を組み合わせる。 例 $\left.\frac{df}{dx}\right|_{x=1}$ 結果