定义简写命令

定义简写命令

我多次使用以下代码:

\begin{gather}
\begin{aligned}
Math here
\end{aligned}
\end{gather}

有没有办法定义一个新的简写命令,如下所示:

\SC
{
Math here
}

答案1

这是一个解决方案:

\documentclass [11pt]{article} % this must go first, there are many different classes
\usepackage[utf8]{inputenc}
\usepackage{fourier} 
\usepackage{amsmath}
\newcommand*\gathlign[1]%
{\begin{gather}\begin{aligned}#1 \end{aligned}\end{gather}}

\begin{document}

\gathlign{
  a & =  b + c \\
  a²   & = b²  + c² 
 }%

\end{document} 

在此处输入图片描述

但是我和@daleif 一样认为:使用一个好的编辑器,你可以将\begin{gather}\begin{aligned} … \end{aligned}\end{gather}光标放在一个快捷方式的中间。这仍然比输入命令更快!

相关内容