tex

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

投稿日:

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

\usepackage{amsmath}
\begin{document}

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

\end{document}

結果


-tex
-

執筆者:


comment

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

関連記事

no image

tex で表を横にぶち抜きしたものを作成する方法

multicolumn を使う。 例 \begin{center} \begin{table}[] \begin{tabular}{|c|c|c|c|} \hline \multicolumn …

no image

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

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

no image

tex で二重線イコール付きの不等号を表示する方法

tex では、等号付きの不等号は $\le$, $\ge$ で入力できるが、不等号の下の等号を許す表示は一本線である。 もし二重線のイコール付きの不等号を表示したい場合には、\amssymb パッケー …

no image

tex でチェックマークとバツ記号を入力する方法

amssymb パッケージを導入して、\checkmark でチェックマークが入力できる。 例 \usepackage{amssymb} \begin{document} $\checkmark \t …

no image

tex でニアリーイコール記号を入力する

ニアリーイコール記号を入力するには、\fallingdotseq または、\rigingdotseq を使う。 例 \usepackage{amssymb} \begin{document} $$x …