Hello,
If I use
\begin{itemize}
\item asdasd
\item dsfsdf
\end{itemize}
the items are with a bullet, but how can I itemize these two with a "-" (a small line)?
Thanks!
Hello,
If I use
\begin{itemize}
\item asdasd
\item dsfsdf
\end{itemize}
the items are with a bullet, but how can I itemize these two with a "-" (a small line)?
Thanks!
One-at-a-time method:
\begin{itemize}
\item[--] asdasd
\item[--] dsfsdf
\end{itemize}
Set all first-level bullet-point to --
:
At preamble,
\def\labelitemi{--}
Set the first-level bullet-point to --
only in one itemize environment:
\begin{itemize}
\renewcommand\labelitemi{--}
\item asdasd
\item dsfsdf
\end{itemize}