我正在使用以下命令。
\documentclass{12 pt}{article}
\begin{document}
$\bullet$ $A = B$
\end{document}
这里,我需要在同一行上用数字(如 A = B ....(1))显示项目符号和方程式。有什么办法可以做到这一点吗?
答案1
\documentclass[12pt]{article}
\begin{document}
\begin{equation}
\bullet\qquad A = B
\end{equation}
\end{document}
答案2
如果您期望使用方程式进行逐项说明,则解决方案很简单:
\documentclass[12pt]{article}
\begin{document}
\begin{itemize}
\item $A=B$
\end{itemize}
%$\bullet$ $A = B$ \\
\end{document}
答案3
为了遵循你的代码,你应该这样写:
\documentclass[12pt]{article}
\begin{document}
$ \bullet A = B$\\ % or
$ \bullet$ $A = B$
\end{document}
但请记住,这不是数学模式的标准用法