tex

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

投稿日:

\nonumber を使うと式番号を表示しないようにできる。

\usepackage{amsmath}
\begin{document}

\begin{equation} \nonumber
    y = f(x)
\end{equation}

\end{document}

結果


-tex
-

執筆者:


comment

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

関連記事

no image

tex でイプシロン記号を入力する方法

\epsilon または \varepsilon を使う。 例 $\epsilon, \varepsilon$ 結果

no image

tex でギリシャ文字のベータ(β)を入力する方法

ベータ(β)は、ギリシャ文字の2番目の文字。数学等でよく使われる。 例 $\beta$ 結果

no image

tex でブロック行列を入力する方法

ゼロの成分が多いブロック行列を tex で出力する。 \usepackage{amsmath} を使う。 例 \usepackage{amsmath} \begin{document} $$ \lef …

no image

tex で太字を書く方法

{\bf } のように、太字にしたい部分を波かっこで囲むとよい。 例 ここは{\bf 太字}になる。 結果

no image

tex で集合の内部集合(上に丸)を書く方法

集合の「内部」を表す記号を入力するには、\mathring{} を使う。 例 $\mathring{S}$ 結果