没有列出项目符号,忽略间距

没有列出项目符号,忽略间距

对于那些知情人士来说,这是一个简单的问题:)我可以制作一个像这样的分项清单

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

但当我使用文本项目符号时,项目符号和文本之间的空格会被忽略

\documentclass{article}
\begin{document}
Steven Segal \textbullet is  \textbullet a \textbullet really \textbullet bad shot!
\end{itemize}
\end{document}

答案1

您必须在它后面插入一个空格,使用

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

此外,您不需要这个enumitem包,也不需要itemize环境。

相关内容