如何在编号后直接写出问题,无需任何垂直空格

如何在编号后直接写出问题,无需任何垂直空格

在 documentclass 考试中,

\documentclass{exam}
\usepackage{amsmath,amssymb}
\begin{document}
\begin{questions}
\question

\begin{equation*}
 \mbox{Let } f(x,y)= \left \{
    \begin{array}{ll}
\frac{x}{y} &   \mbox{ if }  (x,y) \neq (0,0)~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\
  0                     & \mbox{ otherwise. }~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\
    \end{array}
  \right.
\end{equation*}
\end{questions}

\end{document}

是否可以在编号后立即写下问题,而无需任何垂直空间?也就是说,Let 应该从 1 之后开始,没有任何垂直空间。

答案1

永远不要输入这些 ~。目的是什么???

\documentclass{exam}
\usepackage{amsmath}
\begin{document}
\begin{questions}
\question
Let
\begin{equation*}
f(x,y) = \begin{cases}
           \dfrac{x}{y} & \text{if }  (x,y) \neq (0,0), \\
           0           & \text{otherwise.}
         \end{cases}
\end{equation*}
Then \dots
\question
Let $f(x,y) = \begin{cases}
                x/y & \text{if }  (x,y) \neq (0,0), \\
                0   & \text{otherwise.}
              \end{cases}$
Then \dots
\end{questions}
\end{document}

案例

相关内容