\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
関連記事
amsmath パッケージを使っておき、\begin{equation} と \end{equation} の数式中で \tag を使うと式番号を自分で指定したとおりに表示できる。(式番号の中に日本語 …
\surd で入力する。または、amssymb パッケージを使って \checkmark で入力する。 例 \usepackage{amssymb} \begin{document} $\surd \ …
tex で、ページ全体の体裁をそのままにして 分母と分子の間の距離を広げたり狭めたりするには、\raisebox を使う。 例 通常$$ a=\frac{\raisebox{0ex}[0ex][0ex …
ギリシャ文字は、α・β・ζ・σ・・・などの文字のことである。gnuplot では、例えば、アルファ(α)を入力したい場合には、{/Symbol a} と入力する。 例 set xlabel “{/Sy …
2023/01/18
matplotlib のグラフ作成と gnuplot との対応 比較
2022/10/14
pythonで配列(リスト)の、ある要素がわかっているときにその次の要素を取得する方法。