tex

tex で偏微分記号を入力する

投稿日:

偏微分記号を入力するには、\partial を使う。

分数を入力するための \frac と混ぜて使うと、偏微分係数を出力することができる。

\usepackage{amsmath}
\usepackage{amssymb}

\begin{document}

$$\frac{\partial f}{\partial x}$$

\end{document}

結果

-tex
-

執筆者:


comment

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

関連記事

no image

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

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

no image

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

\nonumber を使うと式番号を表示しないようにできる。 例 \usepackage{amsmath} \begin{document} \begin{equation} \nonumber y …

no image

tex でセクションの記号(§)を入力する

セクション記号「§」は、\S で入力できる。 例 \S 1.2.3 を参照 結果 美味しんぼ(39)【電子書籍】[ 雁屋哲 ]価格:605円(税別、送料別)(2020/12/26時点)楽天で購入

no image

tex の equation 環境で複数行の数式を入力する(\split を使う)

\equation の中で \split を使う。 \tag を使って、自分で定義した式番号を使える。 例 \begin{equation} \begin{split} a \\ b \\ c \en …

no image

tex でまるばつを入力する方法

マル記号、バツ記号、マルの中にバツ記号をそれぞれ入力するには次のようにする。 例 $$\circ \times \otimes$$ 結果 美味しんぼ(70)【電子書籍】[ 雁屋哲 ]価格:605円(税 …