我可以用仅带括号的新定义替换环境的开始和结束吗

我可以用仅带括号的新定义替换环境的开始和结束吗

我是否可以只用一对括号来替换环境中的beginand ,其中左括号将负责部分,右括号将起到部分的作用?这有点类似于使用in place of and 。end{}{\begin{}}\end{}\centering\begin{center}\end{center}

查看具有以下环境的 MWE alignment

\documentclass{article}
\usepackage{amsmath}

\def\blgn#1\elgn{\begin{align}#1\end{align}}

% I want to define something like \align{} where
% the left brace `{` will take care of the \begin part
% and rigth brace `}` will function like the\end part.

\begin{document}
\blgn
  (a+b)^2 = a^2 + 2ab + b^2.
\elgn
\end{document}

相关内容