I recently started using LaTeX and tried to nest \list-environments with custom labels via \list{\textendash}.
Everything worked fine but the label for the second item within the nested \list never appeared.
Code: Select all
\begin{list}{\textbullet}
\item 1
\item begin{list}{\textendash}
\item 1.1
\item 1.2 <-- this item is diplayed without a label e.g. \textendash
\item 1.3 <-- this item's label is displayed correctly
\end{list}
\end{list}
Any help would be greatly appreciated.