\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 で、パーセント記号の一部がくっついて表示される場合、パーセント記号の部分だけ別のフォントで表示するという解決法がある。 例 \DeclareRobustCommand{\percent}{{\ …
amssymb パッケージを導入して、\checkmark でチェックマークが入力できる。 例 \usepackage{amssymb} \begin{document} $\checkmark \t …
2023/01/18
matplotlib のグラフ作成と gnuplot との対応 比較
2022/10/14
pythonで配列(リスト)の、ある要素がわかっているときにその次の要素を取得する方法。