I've always used latex for writing papers and documents but I'm not really expert of templates and styles.
Currently I'm working on a document and I'm using a template that was provided by a colleague. Unfortunately when I use \begin{enumerate} the generated list contains numbers that are not followed by points (e.g. I see 1 instead of 1.).
I tried to look in the cls file and I found the following code, however I wasn't able to fix it.
%% Redefine enumerate environment for closer spacing
\renewenvironment{enumerate}%
{\begin{list}{\arabic{enumi}}%
{\setlength{\leftmargin}{2.5em}%
\setlength{\itemsep}{-\parsep}%
\setlength{\topsep}{-\parskip}%%
\usecounter{enumi}}%
}{\end{list}}
How can I fix it?
