latex_8

Posted hkkeryu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了latex_8相关的知识,希望对你有一定的参考价值。

% 导言区 error
documentclass{article}

usepackage{ctex} %引入中文宏包
usepackage{amsmath}

%正文区
egin{document}
    %矩阵环境,用& 分隔列,用\分隔行 [ 与] 间不能有空行
    [
    egin{matrix}
    0 & 1    1 & 0
    end{matrix}qquad
       % pmatrix环境
    egin{pmatrix}
    0 & -i    1 & 0
    end{pmatrix} qquad
    % bmatrix环境
    egin{bmatrix}
    0 & -1    1 & 0
    end{bmatrix} qquad
    % Bmatrix环境
    egin{Bmatrix}
    0 & -1    1 & 0
    end{Bmatrix} qquad
    % vmatrix环境
    egin{vmatrix}
    0 & -1    1 & 0
    end{vmatrix} qquad
    % Vmatrix环境
    egin{Vmatrix}
    0 & -1    1 & 0
    end{Vmatrix} qquad
    ]
    % 可以使用上下标
    [
    A = egin{pmatrix}
    a_{11}^2 & a_{12}^2 & a_{13}^2     0 & a_{22} & a_{23}     0 & 0 & a_{33}
    end{pmatrix}
    ]
    % 常用省略号: dots vdots ddots
    [
    A = egin{bmatrix}
    a_{11} & dots & a_{1n}     & ddots & vdots     0 & & a_{nn}
    end{bmatrix}_{n 	imes n}
    ]
    % 分块矩阵(矩阵的嵌套)
    [
    egin{pmatrix}
    egin{matrix} 1&0 \ 0&1 end{matrix}
    & 	ext{Large 0}    	ext {Large 0} & egin{matrix}
    1 & 0\ 0 & -1 end{matrix}
    end{pmatrix}
    ]
    %三角矩阵
    [ egin{pmatrix}
    a_{11} & a_{12} & cdots & a_{1n}    & a_{22} & cdots & a_{2n}     &        & ddots & vdots     multicolumn{2}{c}{
aisebox{1.3ex}[0pt]{Huge 0}}
    &        &a_{nn}
    end{pmatrix}
    ]
    % 跨列的省略号:hdotsfor{<列数>}
    [
    egin{pmatrix}
    1 & frac 12 & dots frac 1n    hdotsfor{4}    m & frac m2 & dots & frac mn
    end{pmatrix}
    ]
    % 行内小矩阵(smallmatrix)环境 %left 与right 成对出现
    复数$ z=(x,y)$% 也可用于矩阵
    egin{math}
        left(%需要手动加上左括号
            egin{smallmatrix}
            x & -y \ y & x
            end{smallmatrix}
        
ight)%需要手动加上右括号
    end{math}
    来表示
    % array环境(类似于表格环境tabular)
    [
    egin{array}{r | r}
    frac {1}{2} & 0     hline
    0 & -frac {a}{b}c     end{array}
    ]
    %利用 array环境构造复杂矩阵
    [
    % @{<内容>}-添加任意内容,不占表项计数
    % 此处添加一个负值空白,表示向左移-5pt de 距离
    egin{array}{c@{hspace{-5pt}}l}
    % 第一行,第一列
    left(
    egin{array}{ccc|ccc}
    a & cdots & a & b & cdots & b    & ddots & vdots & vdots & adots    &     & a & b \ hline
    &     &   & c & cdots & c    &     &   & vdots & & vdots     multicolumn {3}{c|}{
aisebox{2ex}[0pt]{Huge 0}}
    & c & cdots & c
    end{array}
    
ight)
    &
    % 第一行第二列
    egin{array}{l}
    %left.仅表示与
ight} 配对,什么都不输出
    left.
ule{0mm}{7mm}
ight}p        left.
ule{0mm}{7mm}
ight}q
    end{array}
    \[-5pt]
    %第二行第一列
    egin{array}{cc}
    underbrace{
ule{17mm}{0mm}}_m &
    underbrace{
ule{17mm}{0mm}}_m
    end{array}
    ]
end{document}

  

以上是关于latex_8的主要内容,如果未能解决你的问题,请参考以下文章

latex_8

LaTex学习记录——矩阵

PCL异常处理:pcl 1.8.13rdpartyoostincludeoost-1_64oost ypeofmsvc ypeof_impl.hpp(125): error(代码片段

Latex 入门教程

latex 伪代码 algorithm2e方式

latex 伪代码 algorithm2e方式