与文本一起格式化分段函数

与文本一起格式化分段函数

我对 TeX 还比较陌生。提前感谢您的耐心。我向您保证,在提出这个问题之前,我已经花了超过 5 分钟的时间查看了相关内容。

我可以使用以下命令创建分段函数:

\documentclass{exam}
\begin{document}
\begin{questions}
....
\question %7
Let \begin{equation*}
    f(x) = \begin{cases}
          x, & x < 3,\\
          4x, &  x > 3
          \end{cases}
\end{equation*}
be a function.  Which of the following statements is/are true about $f$?
...
\end{questions}
\end{document}

然而,分段函数在其自己的行上尴尬地居中,而实际上我只是希望它与句子的其余部分保持一致。

换句话说,以上内容让我

“让

(居中)f(x)= 查看我的所有作品

成为一个函数...”

我希望它是“让 f(x)= look-at-all-my-pieces 成为一个函数...”

我可以通过简单地使用 $f(x)=function-stuff$ 用非分段函数来做到这一点,但是一旦我有案例,我就无法做到这一点。

答案1

有以下三种方法:

\documentclass{exam}

\usepackage{amsmath}

\begin{document}

\begin{questions}

  \question
  Let $ f(x) = \begin{cases}
      x & \text{if }x < 3 \\
      4x & \text{if }x > 3
    \end{cases}\, $
  be a function. Which of the following statements is/are true about $f$?

  \question
  Let $ f(x) =\left\{ \begin{matrix}
      x & \text{if }x < 3 \\
      4x & \text{if }x > 3
    \end{matrix}\right.\, $
  be a function. Which of the following statements is/are true about $f$?
  \question
  Let $ f(x) = x$ if $ x < 3 $, $f(x) = 4x $ if $ x > 3 $, be a function. Which of the following statements is/are true about $f$?
\end{questions}

\end{document} 

在此处输入图片描述

相关内容