In my tex I have a sentence:
No external torque $\implies$ Angular momentum $L$ is conserved:
After I compile the tex file, it throws out "! Missing } inserted" error. If I delete the $\implies$ in the above sentence, all is fine.
Why and how to solve it?
The whole tex code (I run it with XeLatex+MakeIndex+BibTex):
\documentclass{beamer} % 默认就是 4:3
\usetheme{Madrid}
\usecolortheme{seahorse}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{physics}
\usepackage{tikz}
\usepackage{tikz-3dplot}
\usetikzlibrary{calc, decorations.markings, arrows.meta, angles, quotes}
\usetikzlibrary{patterns,decorations.pathmorphing}
\usepackage{amsfonts}
\usepackage[utf8]{inputenc}
\usepackage[T3,T1]{fontenc}
\usepackage{tipa}
\usepackage{xcolor}
\usepackage{booktabs} % 用于绘制专业的表格线
\usepackage{setspace}
\usepackage{fontspec}
% 如果你是 Windows 用户,通常 Arial 包含最全的音标字符
\setmainfont{Arial}
\usepackage{siunitx}
\begin{document}
\begin{frame}{Exercise: Angular Momentum Conservation}
\textbf{Problem:} \\
Two flywheels $A$ and $B$ share a common axis. Initially, $B$ is at rest, and $A$ rotates with angular velocity $\omega_A$. After they are coupled by clutch $C$, they rotate together with velocity $\omega$. Find $J_B$ if $A$'s moment of inertia is $J_A$.
\textbf{Solution:} \\
No external torque $\implies$ Angular momentum $L$ is conserved:
\begin{equation*}
J_A \omega_A = (J_A + J_B) \omega
\end{equation*}
\pause
\end{frame}
\end{document}


physicspackage is usually not recommended.booktabspackage is probably not the source of the problem. Keep simplifying, and you'll discover thattipais the culprit. Then you can look at thetipadocumentation.