What reason (other than perhaps being easier for my syntax highlighter to parse) is there to write
\begin{center}
Here is centered text
\end{center}
rather than:
\center
Here is centered text
\endcenter
And likewise for other environments. Does the \begin
do any extra funky checks or are they effectively synonymous?
Best Answer
\begin
and\end
build a group, which can keep settings local. Simply writing\command ... \endcommand
doesn't. Such a scope is very important for me, that's why I prefer the\begin ... \end
syntax.Example: