可能重复:
我如何用 LaTeX 排版这个方程式?
这可能是一个过于具体的问题,但我确实认为这个论坛有最多的知识可以帮助我解决这个问题。
我想用乳胶写出这个方程
我尝试过
\begin{pmatrix}
\end{pmatrix}
尽管这最后也给出了一个括号。
有人能帮助我吗?
答案1
尝试这个:
\documentclass{article}
\usepackage{amsmath}
% Defining new math operators
\DeclareMathOperator{\src}{src}
\DeclareMathOperator{\dst}{dst}
\begin{document}
\begin{equation*}
\dst(x,y) = \left\{
\begin{array}{@{}ll@{}} % edit as suggested by Qrrbrbirlbel
\text{maxVal} & \text{if }\src(x,y)>\text{thresh}\\
0 & \text{otherwise }\\
\end{array} \right.
\end{equation*}
% With the cases environment now
\[
\dst(x,y)=
\begin{cases}
\text{maxVal}
&\text{if }\src(x,y)>\text{thresh}\\
0
&\text{otherwise}
\end{cases}
\]
\end{document
其结果是: