\subsection{IDENTITY :}
\begin{itemize}
\item Left Identity $:$ e_{l} $ \star $ a $=$ a
\item Right Identity $:$ a $\star $ e_{r} $=$ a
\end{itemize}
我无法正确获取第二项中的字母“a”。这是什么问题?请帮忙。
答案1
你的数学完全是错误的,你在编译示例时应该会收到错误(顺便说一句,请包含一个完整的示例,而不是一个片段,这样更容易提供帮助)。
这是正确的方式:
\documentclass[a4paper]{article}
\begin{document}
\subsection{IDENTITY :}
\begin{itemize}
\item Left Identity: $ e_{l} \star a = a$
\item Right Identity: $ a \star e_{r} = a $
\end{itemize}
\end{document}