WinEdt && LaTex(四)—— 自定義新命令(newcommand、def)

weixin_30924079發表於2020-04-04

1. 新建命令

使用如下的命令:\newcommand{name}[num]{definition}

該命令(newcommand)有兩個引數,第一個 name 是你想要建立的命令的名稱,第二個definition是命令的定義,num是可選的,用於指定新命令所需的引數數目(最多 9 個)。如果不給出這個引數,預設就是 0。新建命令的使用和內建命令沒有明顯的區別。

  • 1),替代經常出現的文字內容

    \newcommand{\tnss}{The not so Short Introduction to \LaTeX}

    含引數,

    \newcommand{\txist}[1]
    {This is the \emph{#1} Short Introduction to \LaTeX}
    
    \txist{not so}\\
    \txist{very}

2. def

為了書寫的方便;

\def\E{\mathrm{E}}
\def\Var{\mathrm{Var}}
\def\Cov{\mathrm{Cov}}

3. 舉例

  • 逆時針 反轉 90°

    \usepackage{amsmath, graphicx}
    \newcommand{\indep}{\rotatebox[origin=c]{90}{$\models$}}

    定義完成之後,便可以使用了:

    $X \indep Y$

轉載於:https://www.cnblogs.com/mtcnn/p/9422478.html

相關文章