我正在尝试将一个长方程式切成两行,但\begin{split}
或\begin{multiline}
的颜色正进入方程式标签。
\usepackage{amsmath}
\begin{equation}
\begin{split}
& V_{k+1}(s) = max_a \mathbb{E} [R_{t+1}+ \gamma V_k (S+1) \vert S_t=s,
A_t=a]
& = max_a \sum_{s',r} p(s',r \vert s,a) [r + \gamma V_k(s')]
\end{split}
\end{equation}
答案 0 :(得分:0)
在aligned
中使用equation
。我还更新了其他一些不一致之处。
\documentclass{article}
\usepackage{amsmath,amssymb}
\begin{document}
\begin{equation}
\begin{aligned}
V_{k + 1}(s) &= \max_a \mathbb{E} \bigl[ R_{t + 1} + \gamma V_k(S + 1) \bigm\vert S_t = s, A_t = a \bigr] \\
&= \max_a \sum_{s', r} p(s', r \;\vert\; s, a) [r + \gamma V_k(s')]
\end{aligned}
\end{equation}
\end{document}