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 で二重線イコール付きの不等号を表示する方法

tex では、等号付きの不等号は $\le$, $\ge$ で入力できるが、不等号の下の等号を許す表示は一本線である。 もし二重線のイコール付きの不等号を表示したい場合には、\amssymb パッケー …

no image

tex で丸で囲った文字を出力する方法

丸で囲った文字や、丸数字①などを出力したい場合がある。テキストモードにしてから、\textcircled と \raisebox の組み合わせを使って出力できる。 例 \usepackage{amsm …

no image

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

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

no image

tex で表の縦横軸を調整する方法

例 \begin{center} \begin{table}[] \begin{tabular}{|c|c|c|c|} \hline 氏名 & 生年 & 没年 & 著書 …

no image

tex の equation で式番号を表示しないようにする方法

\nonumber を使うと式番号を表示しないようにできる。 例 \usepackage{amsmath} \begin{document} \begin{equation} \nonumber y …