答案1
答案2
x
请注意和的位置变化-x
。第二和第三种是建议的。
\documentclass{article}
\usepackage{amsmath,amssymb}
\begin{document}
\[
g(x)=
\begin{cases}
x&\text{if }x\in\mathbb{Q}\\
-x&\text{if }x\notin\mathbb{Q}
\end{cases}
\]
or
\[
g(x)=
\begin{cases}
\phantom{-}x&\text{if }x\in\mathbb{Q}\\
-x&\text{if }x\notin\mathbb{Q}
\end{cases}
\]
or
\[
g(x)=\left\{
\begin{array}{rl}
x&\text{if $x\in\mathbb{Q}$}\\
-x&\text{if $x\notin\mathbb{Q}$}
\end{array}
\right.
\]
\end{document}