\align이 완료되기 전에 단락이 종료됨

\align이 완료되기 전에 단락이 종료됨
\documentclass{article}

\usepackage{amsmath}
\usepackage{fancyhdr}
\usepackage{amssymb}
\pagestyle{fancy}

\rhead{Homework for Stats Chapter 4\textbackslash Lab}

\cfoot{Page \thepage}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}
\begin{document}
\section{4.4 Excercises}
\begin{enumerate}
    \item For each experiment, list the sample space and the probabilities
          for each outcome. Compute the expected number of heads in each case.
    \begin{enumerate}
        \item Two independent tosses of a fair coin\\
        \{(HH),(HT),(TH),(TT)\}\\
        $\mathbb{P}(HH)=\frac{1}{4} \mathbb{P}(HT)
                =\frac{1}{4}\mathbb{P}(TH)=\frac{1}{4}\mathbb{P}(TT)
                =\frac{1}{4}$\\

        \begin{align}
        \mathbb{E}\left ( H\right )=\sum _{i=0}H_i\cdot p_i & =2\cdot\frac{1}{4}+1\cdot\frac{1}{4}+1\cdot\frac{1}{4}+0\cdot\frac{1}{4}\\
        & =\frac{1}{2}+\frac{1}{4}+\frac{1}{4}\\
        & =1\\

        \end{align}
\end{enumerate}
\end{enumerate}

\end{document}

내가 어디를 엉망으로 만들고 있는지 볼 수 없습니다. 나는 모든 것을 닫았습니다. "\align이 완료되기 전에 단락이 종료되었습니다.

답변1

정렬 환경에 빈 줄이 있습니다. 귀하의 코드를 일부 수정했습니다. 인라인 \frac(제 생각에는 너무 작음) \mfrac을 패키지의 (=중간 크기 분수, 디스플레이 스타일 분수의 ~80%) 로 바꾸고 nccmath또 다른 빈 줄을 삭제했습니다. 정렬 aligned에 번호를 매길 필요가 없으므로 자유롭게 equation.

\documentclass{article}

\usepackage{amsmath}
\usepackage{fancyhdr}
\usepackage{amssymb}
\usepackage{nccmath}
\pagestyle{fancy}
\fancyhf{}
\rhead{Homework for Stats Chapter 4\textbackslash Lab}

\cfoot{Page \thepage}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}
\begin{document}

\section{4.4 Exercises}
\begin{enumerate}
 \item For each experiment, list the sample space and the probabilities
          for each outcome. Compute the expected number of heads in each case.
 \begin{enumerate}
 \item Two independent tosses of a fair coin\\
        \{(HH),(HT),(TH),(TT)\}\\
        $\mathbb{P}(HH)=\mfrac{1}{4} \mathbb{P}(HT)
                =\mfrac{1}{4}\mathbb{P}(TH)=\mfrac{1}{4}\mathbb{P}(TT)
                =\mfrac{1}{4}$

        \begin{equation}
        \begin{aligned}
        \mathbb{E}\left ( H\right )=∑ _{i=0}^4H_i · p_i & =2 · \frac{1}{4}+1 · \frac{1}{4}+1 · \frac{1}{4}+0 · \frac{1}{4}\\
        & =\frac{1}{2}+\frac{1}{4}+\frac{1}{4}\\
        & =1
        \end{aligned}
        \end{equation}
\end{enumerate}
\end{enumerate}
\end{document} 

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

답변2

환경의 마지막 줄 끝에 줄 바꿈이 있어서는 안된다고 생각합니다. 마지막 \\.

관련 정보