Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to insert latex dot without new line

Tags:

latex

Im trying to add a dot like for a dot product but it always ends up acting like a bullet point creating a new line. I've tried \cdot and \bullet. I think its being treated as a bullet because I'm doing it inside an itemized list. Is there a way to make it just as a dot?

like image 576
giroy Avatar asked Sep 03 '10 06:09

giroy


2 Answers

Have you tried :

$\bullet$
like image 150
Michaël Avatar answered Sep 23 '22 11:09

Michaël


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

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

Note that the dollar symbol represents the math mode.

like image 36
John Jaques Avatar answered Sep 22 '22 11:09

John Jaques