I use the following code to obtain a listed item
\documentclass{article}
\usepackage{paralist}
\begin{document}
\begin{inparaenum}[(a)]
\item first item,
\item second item,
\item last item
\end{inparaenum}
\end{document}
I would like to have the counters, in this case: (a), (b), (c) to be formatted in bold (\bfseries). However, only the counter itself and not the surrounding parentheses should be in bold.
obviously the following doesnt work:
\begin{inparenum}[\bfseries{(a)}]
So can I achieve what I want without hardcoding the package?
\bfseriesis not a macro that takes an argument; (that command is\textbf{}) it's a switch that "turns on" boldface. Your posted answer also doesn't work, but lockstep's does for this reason: you need to turn boldface on inside the paretheses and then turn it off again, which is exactly what his solution does. – Alan Munn May 24 '11 at 15:59