在我的 TeX 文档中,我使用了一个组合函数(势阱/量子阱)并用以下代码编写它:
\begin{align*}
V(x) = \left\{
\begin{matrix} -V_0 \Leftrightarrow -\frac{a}{2} \leq x \leq \frac{a}{2} \\
\\
\ \ \ \ \ \ \ 0 \Leftrightarrow x \geq \frac{a}{2} \text{ und } x \leq - \frac{a}{2}
\end{matrix}
\right.
\end{align*}
我明白了
我想要的是这个
如果有人能帮助我,我将不胜感激。谢谢!
答案1
问题\ \ \ \ \ \ \
在于您的代码中有 many。但我建议改用cases
:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align*}
V(x) = \begin{cases}
-V_0, & -\frac{a}{2} \leq x \leq \frac{a}{2} \\
0, & x \geq \frac{a}{2} \text{ und } x \leq - \frac{a}{2}
\end{cases}
\end{align*}
\end{document}
顺便问一下,难道不应该und
是吗oder
?我认为你不能同时得到x \geq \frac{a}{2}
和x \leq - \frac{a}{2}
(如果a>0
)。