Two questions:
Does LaTeX allow one to (re)define commands within a \\newenvironment
? I\'ve tried using \\renewcommand
, \\newcom
Sure; it's hard to know what went wrong without seeing your code. As an answer to your two questions, see if this helps:
\documentclass{article}
\begin{document}
\newenvironment{myitemize}{%
\begin{list}{}{}% whatever you want the list to be
\let\olditem\item
\renewcommand\item{\olditem ITEM: }
}{%
\end{list}
}
\begin{myitemize}
\item one \item two
\end{myitemize}
\end{document}