latex 公式换行等号对齐
Latex 公式换行问题(换行,等号对齐)
latex公式换行
%导言区
\documentclass{article}%book,report,letter
\usepackage{ctex}
\title{\heiti latex 公式换行}
\author{\kaishu Amazing}
\date{\today}
%正文区
%一个latex有且只能由一个doucument
\begin{document}
%\maketitle 是用来把上边的\title{} \author{} \date{}输出出来的命令
\maketitle
\begin{equation}
f(x) =
\left\{
\begin{array}{lr}
0& w>1\\
1& w<=1
\end{array}
\right.
\end{equation}
\end{document}
markdown公式换行:
$$
f(x)=
\begin{cases}
0& \text{x=0}\\
1& \text{x!=0}
\end{cases}
$$
$$ f(x)= \begin{cases} 0& \text{x=0}\\ 1& \text{x!=0} \end{cases} $$