Differences between revisions 1 and 3 (spanning 2 versions)
Revision 1 as of 2020-09-03 15:36:51
Size: 439
Comment:
Revision 3 as of 2022-05-11 17:42:48
Size: 439
Comment:
No differences found!

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)