我试图在Latex中创建这个公式:
我尝试使用的代码:pos(v) = \left\{\begin{matrix} 0 & v<0 \\ v & otherwise \end{matrix}\right.
但由于某种原因,我的代码一直出错:
缺少$插入。
&LT;插入的文字&gt;
$
是的,我已经尝试将$放在某些地方,没有结果:(
希望有人知道如何纠正这个!提前致谢
答案 0 :(得分:1)
这对我来说很好。我的第一个猜测与环境有关。您是否在$
中附上了公式?您必须这样做才能进入 math-mode :
$pos(v) = \left\{ \begin{matrix} 0 & v<0 \\ v & otherwise \end{matrix} \right.$
或者,您可以使用
\begin{equation}
pos(v) = \left\{
\begin{matrix}
0 & v<0 \\
v & otherwise
\end{matrix}
\right.
\end{equation}
答案 1 :(得分:1)
使用数学的内容需要置于数学模式内(即,由内联数学符号$
... $
包围或显示数学\[
... {{1或类似的):
\]
我建议使用\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
pos(v) = \left\{
\begin{matrix}
0 & v < 0 \\
v & otherwise
\end{matrix}
\right.
\]
\[
\text{pos}(v) = \begin{cases}
0 & \text{if $v < 0$} \\
v & \text{otherwise}
\end{cases}
\]
\end{document}
来显示条件函数。另外,使用cases
设置适当的文本内容,而不是仅仅在数学模式下设置文本;否则间距会很糟糕。