I want to itemize as
[1] sentences
[2] sentences....
But if I type
\begin{description} \itemsep -2pt % Reduce space between items
\item[[1]] sentences
\end{description}
in latex, it appears
[1 ] sentences
And if I type
\begin{description} \itemsep -2pt % Reduce space between items
\item[$[1]$] sentences
\end{description}
in latex, it gives me error.
How can I do it?
description, are you looking foritemizeorenumerate? You can customize those environments using packageenumitem. – Johannes_B Oct 11 '15 at 15:30paralistwhich adds the possibility of having in-line enumeration. – JPi Oct 11 '15 at 15:31enumitemhas in-line lists, too. – Javier Bezos Oct 11 '15 at 16:25