ある時はアミーゴ

ただの日記。技術・読書・株式投資・育児など

はてなブログのMarkdownで複数行にまたがる数式を書く

Markdownを使っているときに複数行にまたがる数式をTeXでどう書けばいいか。言い換えると、どうすれば数式内で改行できるか。一瞬だけ悩んだのでメモ。

一般的なTeXの文法を調べると \begin{align}\begin{cases} といった環境で \\ と書けば改行できる。という記載がみつかる。

が、 \\\\ としないと改行されない。 \newline はちゃんと改行される。

\begin{align}
\cos 2\theta &= \cos^{2} \theta - \sin^{2} \theta \\\\
&= 2\cos^{2} \theta - 1 \newline
&= 1 - 2\sin^{2} \theta
\end{align}

$$ \begin{align} \cos 2\theta &= \cos^{2} \theta - \sin^{2} \theta \\ &= 2\cos^{2} \theta - 1 \newline &= 1 - 2\sin^{2} \theta \end{align} $$