I want to ask about my work...
\documentclass{article}
\newcounter{qcounter}
\begin{document}
\begin{list}
{\bfseries{}\textnormal{Langkah \arabic{qcounter}~}}
{
\usecounter{qcounter}
\setlength{\leftmargin}{1in}
\bfseries
\setlength\labelwidth{3in}
}
\item \textnormal{a}
\item \textnormal{b}
\item \textnormal{c}
\begin{enumerate}
\item \textnormal{q}
\item \textnormal{w}
\item \textnormal{e}
\item \textnormal{r}
\end{enumerate}
\item \textnormal{c}
\item \textnormal{d}
\item \textnormal{f}
\end{list}
\end{document}
I want that enumerate (1, 2, 3, 4, ...) unbold. But I can't change it. Somebody can help me?

\bfseries{}from your code removes the bold font on these labels. Is that what you are asking for? – Andrew Swann Aug 05 '12 at 08:22