LaTeX에서 {가 누락되었다고 말하는 이유는 무엇입니까?

LaTeX에서 {가 누락되었다고 말하는 이유는 무엇입니까?

다음 코드를 포함하여 문서를 컴파일할 때마다 PDF에서 만족스러운 출력이 생성되지만 오류가 발생합니다.

43
Missing { inserted.
<to be read again> 
                   \gdef 
l.43 \item $\mu_\hat{p}
                       $ = mean of all possible values of $\hat{p} = \pi$. \\

\begin{itemize}
\item $\mu_\hat{p}$ = mean of all possible values of $\hat{p} = \pi$. \\
\item $\sigma_\hat{p}$ = standard deviation of all possible values of \^p =     $\sqrt{\frac{\pi(1-\pi)}{n}}$ \\
\item CLT (for \^p): If $n\pi \geq 10$ \underline{AND} $n(1-\pi) \geq to$, then the histogram of all possible values of \^p will be approximately normal. \\
\end{itemize}

내가 뭘 잘못했나요?

답변1

아래 첨자에는 중괄호가 필요합니다 \mu_{\hat{p}}.\sigma_{\hat{p}}

\documentclass{article}
\usepackage{amssymb}
\begin{document}

\begin{itemize}
\item $\mu_{\hat{p}}$ is the mean of all possible values of $\hat{p} = \pi$.
\item $\sigma_{\hat{p}}$ represents the  standard deviation of all possible values of $\hat{p} =     \sqrt{\frac{\pi(1-\pi)}{n}}$
\item CLT (for $\hat{p}$): If $n\pi \geq 10$ \underline{AND} $n(1-\pi) \geq to$, then the histogram of all possible values of $\hat{p}$ will be approximately normal.
\end{itemize}

\end{document}

여기에 이미지 설명을 입력하세요

또한 일관성을 위해 텍스트를 \^p수학으로 변경하고 각 끝에 있는 을 억제했습니다 ( undefull 을 생성함 ). 아마도 당신 대신에 다음과 같은 것을 의미했을 것 입니다.\hat{p}\\\item\hboxes$n(1-\pi) \geq to$$n(1-\pi) \geq t_{0}$

밑줄을 긋는 것은 좋은 인쇄상의 특징이 아니므로 억제하는 것이 좋습니다.

관련 정보