2

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?

lockstep
  • 250,273
uyas
  • 21
  • Removing the first \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

1 Answers1

3

Consider using the enumitem package to locally set your list requirements:

enter image description here

\documentclass{article}
\usepackage{enumitem}% http://ctan.org/pkg/enumitem
\begin{document}

\begin{enumerate}[leftmargin=1in,labelwidth=3in,label=\textnormal{Langkah~\arabic*~}]
  \item a
  \item b
  \item c
  \begin{enumerate}[label=\arabic*.]
    \item q
    \item w
    \item e
    \item r
  \end{enumerate}
  \item c
  \item d
  \item f
\end{enumerate}

\end{document}
Werner
  • 603,163
  • thxxxx...its work – uyas Aug 05 '12 at 08:29
  • @uyas don't forget to upvote Werner's answer. If it has resolved the issue (which it sounds like it has), please click on the green check mark- this gives Werner some well-earned reputation points for his code :) Welcome to the group! – cmhughes Aug 05 '12 at 18:30