How to insert latex dot without new line

How to insert latex dot without new line

Have you tried :

$bullet$

Try cdot in math mode. It is a good way to indicate multiplication:
enter

  documentclass{article}
  begin{document}
  Here is a product: $a cdot b$.
  end{document}

Note that the dollar symbol represents the math mode.

How to insert latex dot without new line

just had the same problem…

Math mode $...$ is not essential for this:

documentclass{minimal}
begin{document}
noindent
Heres 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}

giving:

enter

Leave a Reply

Your email address will not be published. Required fields are marked *