2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

数式サンプル

Last updated at Posted at 2018-08-22

トップページ

数式

指定方法

  • コードブロック"math"で指定する
 ```math
 ```  
  • $(インライン) または $$(段落) で囲む
$ \frac{a}{b} $
$$ \frac{a}{b} $$
  • サンプル

\begin{align}

& m \frac{d^2x}{dt^2} = \vec{F} \\
& a

\end{align}

$$
\begin{array}{l}
m \frac{d^2x}{dt^2} = \vec{F}
\end{array}
$$

運動方程式: $ m \frac{d^2x}{dt^2} = \vec{F} $

記述

  • 分数
    \frac{a}{b} => $ \frac{a}{b} $

  • ベクトル
    \vec{F} => $ \vec{F} $

  • イコール揃え

```math
\begin{align}
f(x) &= x^2+3x+2 \
&= (x+1)(x+2)
\end{align}
```

\begin{align}
f(x) &= x^2+3x+2 \\
&= (x+1)(x+2)
\end{align}

一覧

内容 記述 表示
分数 \frac{a}{b} $ \frac{a}{b} $
ベクトル \vec{F} $ \vec{F} $
ドット \cdot $ a \cdot b $
累乗 x^2 e^x $ x^2 e^x$
n乗根 \sqrt{x} \sqrt[n]{x} $ \sqrt{x} \sqrt[n]{x} $
対数 \log_2 x $$ \log_2 x $$
三角関数 \sin x \cos x \tan x $ \sin x \cos x \tan x $
\sum_{k=1}^{n} k $$ \sum_{k=1}^{n} k $$
極限 \lim_{x \to \infty} f(x) $$ \lim_{x \to \infty} f(x) $$
積分 \int_a^b f(x) dx $ \int_a^b f(x) dx $
角度 \angle A $ \angle A $

ギリシャ文字

出力 TEXTEX 読み方
$ \alpha $ \alpha アルファ
$ \beta $ \beta ベータ
$ \gamma $ \gamma ガンマ
$ \delta $ \delta デルタ
$ \varepsilon $ \varepsilon バーイプシロン
$ \eta $ \eta エタ
$ \theta $ \theta シータ
$ \lambda $ \lambda ラムダ
$ \mu $ \mu ミュー
$ \pi $ \pi パイ
$ \rho $ \rho ロー
$ \phi $ \phi ファイ
$ \omega $ \omega オメガ
$ \Sigma $ \Sigma シグマ
$ \Delta $ \Delta デルタ
2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?