I am currently modifying my own documentstyle and I would like to change the spacing before and after the enumerate-environment globally. I already fond the possible solution using the package enumitem, but I don't want to include another package for this. I'd like to this the proper way and redefine the enumerate-environment. Does anybody know how?
Minimal working example:
\documentclass[submit,reqno,oneside,a4paper,10pt]{amsproc}
\usepackage{blindtext}
\begin{document}
\blindtext
% This spacing should be bigger
\begin{enumerate}
\item Item 1
\item Item 2
\end{enumerate}
% This spacing should be bigger
\blindtext
\end{document}

enumitemanswers your question. Why don’t you want to include that package and use its options? – alchemist Feb 07 '23 at 17:45