tex

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

投稿日:

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

\usepackage{amsmath}
\begin{document}

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

\end{document}

結果


-tex
-

執筆者:


comment

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

関連記事

no image

tex で、集合の元でないことを表現する方法

\not \in を使う。 例 x \not \in A 結果

no image

tex で上極限・下極限の記号を入力する

\amsmath パッケージを使い、\varlimsup, \varliminf を使う。 例 \usepackage{amsmath} \usepackage{amssymb} \begin{doc …

no image

tex で表に空欄をつける方法

区切りの & だけを入力すると、表に空欄を作ることができる。 例 \begin{table} \begin{tabular}{ |c|c|c|c| } \hline 1 & & …

no image

tex でスクリプト体で数式を入力する方法

大文字のスクリプト体を入力するには、mathrsfs パッケージを使う。 例 \usepackage{mathrsfs} \begin{document} $$\mathscr{ABCDEFGHIJK …

no image

tex で入力した文字をそのまま表示する

tex で、入力された文字を「そのまま表示」するにはtex ソースの最初に\usepackage{verbatim}と書いておいてから、\verb| | コマンドを使う。 例 \usepackage{ …