我的问题是,在方程式环境中,双反斜杠\\
似乎不能按预期强制换行:
\begin{equation*}
\fontsize{12}{15} \text{1. (a) State the Mean Value Theorem.}\\
\fontsize{12}{15}\text{(b) Consider the function}
g:\mathbb{R} \rightarrow \mathbb{R}
\end{equation*}
在这段代码中,我找不到实现该\\
功能的方法。我希望元素 (b) 位于我用红色绘制的位置。
这段代码有什么问题?我该如何让它正常\\
工作?
答案1
环境equation
不适合换行. 为此目的, 存在环境multline
、、等(及其gather
align
已加星标版本)由软件包提供amsmath
。(也存在eqnarray
但LaTeX
不推荐)。
对于您的示例,您应该使用环境enumerate
(如果您想要更个性化的东西,请结合enumitem
包裹)。
例子
\documentclass[12pt]{article}
\usepackage{amssymb}
\begin{document}
\begin{enumerate}
\item
\begin{enumerate}
\item State the Mean Value Theorem.
\item Consider the function $g:\mathbb{R} \rightarrow \mathbb{R}$
\end{enumerate}
\end{enumerate}
\end{document}