Problem mit \par im Absatz

Problem mit \par im Absatz
\documentclass{article}
\usepackage{amsmath}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\begin{document}
    \begin{align}

       \hat{\alpha} &= \begin{cases} 
                     \tan^{-1}\frac{\hat{\alpha_1}}{\hat{\alpha_2}},  \,    &\text{if }  \hat{\alpha_1}>0 \, \hat{\alpha_2}>0 \\
                     \tan^{-1}\frac{\hat{\alpha_1}}{\hat{\alpha_2}}+\pi,  \,  &\text{if }  \hat{\alpha_1}<0 \\
                     \tan^{-1}\frac{\hat{\alpha_1}}{\hat{\alpha_2}}+2\pi,   \, &\text{if  }\hat{\alpha_2}<0 \,  \hat{\alpha_1} >0 \\
                     \text{undefined}, & \hat{\alpha_2}=0 \, \hat{\alpha_1}=0
                \end{cases}

    \end{align}

\end{document}

Ich muss diese Fälle nummerieren, aber wenn ich den Align-Code eingebe, wird die Datei nicht kompiliert, weil \par .... was ist falsch, bitte helfen Sie mir, ich versuche mit allen Mitteln, das Problem zu lösen

Antwort1

Fügen Sie keine Leerzeilen in mathematische Umgebungen ein. (Und teilen Sie uns bitte vollständige Minimalbeispiele mit, d. h. Beispiele, die Ihr Problem reproduzieren.)Undkann „out of the box“ ausgeführt werden, mit \documentclass{}, \begin{document}, usw.)

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
   \hat{\alpha} &= 
   \begin{cases} 
     \tan^{-1}\frac{\hat{\alpha_1}}{\hat{\alpha_2}},  \,    &\text{if }  \hat{\alpha_1}>0 \, \hat{\alpha_2}>0 \\
     \tan^{-1}\frac{\hat{\alpha_1}}{\hat{\alpha_2}}+\pi,  \,  &\text{if }  \hat{\alpha_1}<0 \\
     \tan^{-1}\frac{\hat{\alpha_1}}{\hat{\alpha_2}}+2\pi,   \, &\text{if  }\hat{\alpha_2}<0 \,  \hat{\alpha_1} >0 \\
     \text{undefined}, & \hat{\alpha_2}=0 \, \hat{\alpha_1}=0
   \end{cases}
\end{align}
\end{document}

Bildbeschreibung hier eingeben

Ich würde auch einige Verbesserungen für diese Formel vorschlagen, wie unten:

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
   \hat{\alpha} &= 
   \begin{cases} 
      \tan^{-1}\frac{\hat{\alpha_1}}{\hat{\alpha_2}} &\text{if }  \hat{\alpha_1}>0\ \hat{\alpha_2}>0, \\
      \tan^{-1}\frac{\hat{\alpha_1}}{\hat{\alpha_2}}+\pi &\text{if }  \hat{\alpha_1}<0, \\
      \tan^{-1}\frac{\hat{\alpha_1}}{\hat{\alpha_2}}+2\pi  &\text{if  }\hat{\alpha_2}<0\  \hat{\alpha_1} >0, \\
      \text{undefined} & \text{if }\hat{\alpha_2}=0,\ \hat{\alpha_1}=0.
   \end{cases}
\end{align}
\end{document}

Bildbeschreibung hier eingeben

Es kann meiner Meinung nach noch verbessert werden, aber es gibt hier Teilnehmer, die (viel) kompetenter sind als ich, um auf diese Verbesserungen hinzuweisen!

verwandte Informationen