\nonumber を使うと式番号を表示しないようにできる。
例
\usepackage{amsmath}
\begin{document}
\begin{equation} \nonumber
y = f(x)
\end{equation}
\end{document}
結果

雑記
投稿日:
\nonumber を使うと式番号を表示しないようにできる。
\usepackage{amsmath}
\begin{document}
\begin{equation} \nonumber
y = f(x)
\end{equation}
\end{document}
執筆者:seyanen
関連記事
表を見やすく網掛けする方法は、エクセルなどでよく使われる。 tex の表でもできる。 colortbl パッケージを使う。マニュアル:https://ftp.jaist.ac.jp/pub/CTAN/ …
\amsmath パッケージを使い、\varlimsup, \varliminf を使う。 例 \usepackage{amsmath} \usepackage{amssymb} \begin{doc …
tex で「なぜならば」記号(∵)を入力するには、数式モードで $\because$ と書く。ams のパッケージを使う。 例 \usepackage{amsmath}\usepackage{amss …
tex で文中の文字に \textcolor で色をつける方法
color パッケージを使っておき、本文中 \textcolor で色をつける。 例 \usepackage{color} \begin{document} {\bf \textcolor{red}{ …
2023/01/18
matplotlib のグラフ作成と gnuplot との対応 比較
2022/10/14
pythonで配列(リスト)の、ある要素がわかっているときにその次の要素を取得する方法。