Semantically, I want an itemized list, but visually I just want some space. How can I hide the bullets?
Semantically, I want an itemized list, but visually I just want some space. How can I hide the bullets?
I can't speak for any other setup, but I'm using Tufte-Latex on MacTex, and I just typed the following:
\begin{itemize}[]
It worked. :-) I love it when guessing does that. So just try adding [] after.
P.S. the "generalized" list from lindelof worked also, but they didn't line up as nicely as with itemize. Jakub's suggestion was what inspired my guess, when I tried it, I got a bunch of "label=" strings as bullet points.
Edit: As others have pointed out, the more standard approach is to again use [], but next to each item in the list as in other answers on this page. If you tire of seeing square brackets on each line, try other approaches on this page :)
\begin{description}
\item[] first item
\end{description}
What you probably want is a generalized list:
\begin{list}{\quad}{}
\item ...
\end{list}
The second argument to this environment is the symbol that will be inserted in front of every item.
I think the best solution would be to use enumitem package from CTAN: It is present in teTeX and LaTex and should also be present in most other TeX distribution. Then you are able to use:
\begin{itemize}[label=]
\item 1st item
\item ...
\end{itemize}
The bullet itself is a macro so you can easily redefine it globally like this:
\renewcommand{\labelitemi}{$\star$}
In your case just leave the macro empty. See this page for details.