I am using \textbullet to make bullet points. What should I use to make a different style of bullet indented underneath it.
Thanks!
Text Formatting ⇒ How do I make a sub bullet in latex?
NEW: TikZ book now 40% off at Amazon.com for a short time.

How do I make a sub bullet in latex?
Have you tried using the itemize envirnoment inside another itemize envirnoment? It is as simple as that. Here is the code to work on:
If you want to change the 'bullet', take a look at enumitem package. It provides ample customisation options.
Code: Select all
\documentclass{article}
\begin{document}
Some text goes here.
\begin{itemize}
\item This is top level item with a certain bullet.
\begin{itemize}
\item Line with a 'sub bullet'.
\item Another line with a 'sub bullet'.
\end{itemize}
\item Back to main bullet list.
\end{itemize}
\end{document}
OS: Debian/GNU Linux; LaTeX System : TeXLive; Editor : Vim