14

Easy question for those in the know :) I can produce a itemised list like this

\documentclass{article}
\usepackage{enumitem}% http://ctan.org/pkg/enumitem
\begin{document}
\begin{itemize}
\item banana
\item mango
\item Meg Ryan
\end{itemize}
\end{document}

But when I use text bullets the space between the bullet and the text is ignored

\documentclass{article}
\begin{document}
Steven Segal \textbullet is  \textbullet a \textbullet really \textbullet bad shot!
\end{itemize}
\end{document}
1
  • 2
    How are these two related? If you need itemize inline with your text, you can use paralist package which handles the spacing automaically. Commented Jan 5, 2014 at 14:18

1 Answer 1

23

You have to insert a space after it, using

Steven Segal \textbullet\ is  \textbullet\ a \textbullet\ really \textbullet\ bad shot!

Also, you don't need the enumitem package for this neither for itemize environment.

2
  • 1
    That simple. That's cool. I was worried it would be \secretspace or some command unknown to me. Thank you.
    – Ghoul Fool
    Commented Jan 5, 2014 at 14:16
  • aha secret space is actually \- Well done me.
    – Ghoul Fool
    Commented Jan 5, 2014 at 14:29

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .