如何在等式中放置左括号?

如何在等式中放置左括号?

我想这样写

        /ki    if 0<I<IO
       | 
t(i)= <
       |
        \c     if I>Io

这是花括号

答案1

正如评论中所提到的,看起来cases环境就是您所需要的。

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath} % for 'cases' environment
\begin{document}
\[
t(i) = 
\begin{cases}
k_i & \text{if $0<i<i_0$}\\
c   & \text{if $i>i_0$} 
\end{cases}
\]
\end{document} 

相关内容