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.


Custom Environments

The myitemize environment wraps the itemize environment.

\newenvironment{myitemize}{
\begin{itemize}[label={}]
}{
\end{itemize}
}


CategoryRicottone

LaTeX/Environments (last edited 2022-05-11 17:42:48 by DominicRicottone)