I'm trying to find a way to redefine the \item command (or redefine the package) within the enumerate environment (or some another listing environment) so that as each item ends a line is drawn directly after (as in the code below). Does anyone have any ideas?
thanks in advance,
J. Puri
Code: Select all
\documentclass{article}
\begin{document}
\begin{enumerate}
\item An Item
\begin{center}
\line(1,0){300}
\end{center}
\item Another item
\begin{center}
\line(1,0){300}
\end{center}
\end{enumerate}
\end{document}