\equation の中で \split を使う。
\tag を使って、自分で定義した式番号を使える。
例
\begin{equation}
\begin{split}
a \\ b \\ c
\end{split}
\tag{式番号1}
\end{equation}
結果

雑記
投稿日:
\equation の中で \split を使う。
\tag を使って、自分で定義した式番号を使える。
\begin{equation}
\begin{split}
a \\ b \\ c
\end{split}
\tag{式番号1}
\end{equation}

執筆者:seyanen
関連記事
ギリシャ文字は、α・β・ζ・σ・・・などの文字のことである。gnuplot では、例えば、アルファ(α)を入力したい場合には、{/Symbol a} と入力する。 例 set xlabel “{/Sy …
amsmath パッケージを使っておき、\begin{equation} と \end{equation} の数式中で \tag を使うと式番号を自分で指定したとおりに表示できる。(式番号の中に日本語 …
tex の equation で式番号を表示しないようにする方法
\nonumber を使うと式番号を表示しないようにできる。 例 \usepackage{amsmath} \begin{document} \begin{equation} \nonumber y …
\int に \limits を書くと、積分範囲の位置を少し上下に移動させることができる。 例 $$\int\limits_{a+b}^{c+d} f(x) dx$$ $$\int_{a+b}^{c+ …
2023/01/18
matplotlib のグラフ作成と gnuplot との対応 比較
2022/10/14
pythonで配列(リスト)の、ある要素がわかっているときにその次の要素を取得する方法。