Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I hide bullets in LaTeX lists?

Tags:

latex

Semantically, I want an itemized list, but visually I just want some space. How can I hide the bullets?

like image 255
James A. Rosen Avatar asked Feb 07 '09 00:02

James A. Rosen


People also ask

How do I make a list without bullets in LaTeX?

For those looking for an alternative solution: basically, you can pass anything in square brackets \begin{itemize}[...] \hspace{10pt} , \quad , etc. commands can be used to add indentation.

How do I show bullet points in LaTeX?

Unordered (bulleted) lists are produced by the itemize environment, where each list entry starts by using the \item command, which also generates the bullet symbol.

How do you itemize in LaTeX?

Using lists in LaTeX is pretty straightforward and doesn't require you do add any additional packages. For unordered lists, LaTeX provides the itemize environment and for ordered lists there is the enumerate environment. The elements within both environments have to be declared beginning with the \item command.


1 Answers

\item[] text 

Optionally, you can put something inside the [].

like image 120
alamodey Avatar answered Oct 01 '22 19:10

alamodey