[Tex/LaTex] Add bold enumerate items

#enumeratebold

I would like to add bold items with enumerate in my report.

How can I do that using \usepackage{enumitem}?

Best Answer

If you want the whole item bold, you can write:

\begin{enumerate}\bfseries
\item The firs item
\item The second item
\end{enumerate}

If you want the number to be bold, you can do it by using the enumitem package and setting:

\begin{enumerate}[label=\textbf{\arabic*})]
\item The firs item
\item The second item
\end{enumerate}

Check the enumitem package documentation for more info.

Related Question