このコードには、いくつかの場所でインクルードエラーが表示されます$
。助けてください
\begin{equation}
\int_{-\pi}^{\pi} e^{im\theta}d\theta = \begin{cases}
0, & \text{if m\neq 0},\\
2\pi, & \text{if m=0}.
\end{cases}
\end{equation}
答え1
もうすぐ終わりです。 内\text
に数式を含める必要があります$...$
。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\int_{-\pi}^{\pi} e^{im\theta}d\theta = \begin{cases}
0, & \text{if $m\neq 0$},\\
2\pi, & \text{if $m=0$}.
\end{cases}
\end{equation}
\end{document}
個人的な好みとしては、以下のようにタイプセットします。微分 d の前にいくらかのスペースを追加するマクロを定義し、2 番目の列を自動的にラップするパッケージcases*
の環境を使用します。mathtools
\text
\documentclass{article}
\usepackage{mathtools} % loads amsmath
\newcommand*\diff{\mathop{}\!d}
\begin{document}
\begin{equation}
\int_{-\pi}^{\pi} e^{im\theta} \diff\theta =
\begin{cases*}
0 & if $m\neq 0$, \\
2\pi & if $m=0$.
\end{cases*}
\end{equation}
\end{document}