LaTeX Environments
Environments are macros that insert syntax at the beginning and ending of a section. They are useful for initializing and then resetting section-dependent settings.
Contents
Custom Environments
The myitemize environment wraps the itemize environment.
\newenvironment{myitemize}{ \begin{itemize}[label={}] }{ \end{itemize} }