Text FormattingHow do I make a sub bullet in latex?

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
latexhelp2345
Posts: 1
Joined: Sat Jan 03, 2015 2:34 am

How do I make a sub bullet in latex?

Post by latexhelp2345 »

I am using \textbullet to make bullet points. What should I use to make a different style of bullet indented underneath it.

Thanks!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

mas
Posts: 226
Joined: Thu Dec 04, 2008 4:39 am

How do I make a sub bullet in latex?

Post by mas »

Have you tried using the itemize envirnoment inside another itemize envirnoment? It is as simple as that. Here is the code to work on:

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}
If you want to change the 'bullet', take a look at enumitem package. It provides ample customisation options.

OS: Debian/GNU Linux; LaTeX System : TeXLive; Editor : Vim
Post Reply