\textbf{Question 2}
a)
\begin{align*}
P(a<\mu<b|\mathbf{y}) & = P(a<\mu|\mathbf{y}<b) \\
& = \int_{a}^b p(\mu|\mathbf{y}) d\mu \ \ \text{where} \ \ p(\mu|\mathbf{y}) \ \ \text{is a Student \textit{t} pdf.} \\
& = \int_{\mu} I_{(a<\mu|\mathbf{y}<b)} p(\mu|\mathbf{y}) d\mu
\end{align*}
\begin{align*}
\text{where} \ \ I_{(a<\mu|\mathbf{y}<b)} = \begin{cases} 1 & \text{if} \ a<\mu|\mathbf{y}<b \\ 0 & \text{otherwise} \end{cases}
\end{align*}
生成:
但我希望它看起来像:
即对齐的第一行与 a) 在同一行开始
我该如何调整代码来实现这一点?
答案1
我相信你可能想要aligned
环境
% arara: pdflatex
% !arara: indent: {overwrite: yes}
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{enumerate}
\item
$\begin{aligned}[t]
P(a<\mu<b|\mathbf{y}) & = P(a<\mu|\mathbf{y}<b) \\
& = \int_{a}^b p(\mu|\mathbf{y}) d\mu \ \ \text{where} \ \ p(\mu|\mathbf{y}) \ \ \text{is a Student \textit{t} pdf.} \\
& = \int_{\mu} I_{(a<\mu|\mathbf{y}<b)} p(\mu|\mathbf{y}) d\mu
\end{aligned}$
\end{enumerate}
\end{document}