\usepackage{paralist}
\begin{inparaenum}[1)]
\item carefully targeted nutrition and health interventions,
\item good governance, and
\item appropriate private institutions and incentives,
\end{inparaenum}
Becauase I have a bunch of places like this in the document I was
trying to automate
\begin{inparaenum}
\item [2)] carefully targeted nutrition and health interventions,
\item [3)] good governance, and
\item [4)] appropriate private institutions and incentives,
\end{inparaenum}
Any ideas?
I am not that familiar with this kind of stuff.
The numbers are controlled by the counter \@listctr. So, with the
commands
\makeatletter
\def\setliststart#1{\setcounter{\@listctr}{#1}%
\addtocounter{\@listctr}{-1}}
\makeatother
you can write
\begin{inparaenum}[1)]\setliststart{2}
\item carefully targeted nutrition and health interventions,
\item good governance, and
\item appropriate private institutions and incentives,
\end{inparaenum}
to start the list at 2.
/Stefan
--