我试图添加像•点产品一样的点,但它总是像一个创建新线的子弹点.我试过\cdot和\bullet.我认为它被视为一颗子弹,因为我在一个逐项列表中这样做.有没有办法让它像点一样?
只是有同样的问题...
数学模式$...$对此不是必需的:
\documentclass{minimal}
\begin{document}
\noindent
Here's an example with $\bullet$ math mode
\newline
And here one in \textbullet text only
\newline
Although you may want to give the last \textbullet \ more spacing
\end{document}
Run Code Online (Sandbox Code Playgroud)
给予:

\cdot在数学模式下尝试。这是表示乘法的好方法:

\documentclass{article}
\begin{document}
Here is a product: $a \cdot b$.
\end{document}
Run Code Online (Sandbox Code Playgroud)
请注意,美元符号代表数学模式。