
Code: Select all
\newcommand{\bes}{\begin{equation}\begin{split}}
Code: Select all
\newcommand{\bes}{\begin{equation}\begin{split}}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Code: Select all
\usepackage{environ}
\NewEnviron{es}{%
\begin{equation}\begin{split}
\BODY
\end{split}\end{equation}
}
Code: Select all
%Laver et environment til equation split (der er 2 kommandoer så lidt kompliceret..)
\NewEnviron{split.enviro}{%
\begin{equation}\begin{split}
\BODY
\end{split}\end{equation}
}
%Begin equation split: Begin equation split = bes
\newcommand{\bes}{\begin{split.enviro}}
\newcommand{\ees}{\end{split.enviro}}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis