美文网首页LaTeXLatex
16LaTeX学习系列之---LaTeX数学公式的补充

16LaTeX学习系列之---LaTeX数学公式的补充

作者: 张一根 | 来源:发表于2019-03-06 16:10 被阅读0次

    目录

    [TOC]

    本系列是有关LaTeX的学习系列,共计19篇,本章节是第16篇。
    前一篇:15LaTeX学习系列之---LaTeX里插入数学公式
    后一篇:17LaTeX学习系列之---LaTeX的版面设计
    总目录:19LaTeX学习系列之---LaTeX的总结

    前言

    前一节我们学习了怎么在LaTeX中插入数学公式,本小节,我们补充在LaTeX中长公式的使用。

    (一)知识点说明

    1.基础细节

    1. ** 号问题:在环境中有星号则无编号,无星号有编号。
    2. \ \ :换行
    3. \ref{fig:01}引用标签,\label{fig:01}添加标签,实现交叉引用
    4. \text{文字}:在数学模式中输入文字

    2.gather环境

    用途:可以写多行公式,对齐方式是整体中间对齐

    (1)带编号的

        %多行公式--带编号
        \begin{gather}
            a + b +c = b + a \\
            1+2 = 2 + 1
        \end{gather}
    

    %多行公式--带编号 \begin{gather} a + b +c = b + a \\ 1+2 = 2 + 1 \end{gather}

    (2)不带编号

    (下面的是否带编号类似)

    %多行公式--不带编号1
        \begin{gather*}
            a + b = b + a \\
            1+2 = 2 + 1
        \end{gather*}
    

    %多行公式--不带编号1 \begin{gather*} a + b = b + a \\ 1+2 = 2 + 1 \end{gather*}

    (3)阻止编号

    %多行公式--带编号2 \notag 阻止编号
        \begin{gather}
        a + b = b + a \notag \\
        1+2 = 2 + 1 \notag
        \end{gather}
    

    %多行公式--带编号2 \notag 阻止编号 \begin{gather} a + b = b + a \notag \\ 1+2 = 2 + 1 \notag \end{gather}

    3.align环境

    按&号对齐,自己指定对齐方式

    % 按&号对齐,--带编号
        \begin{align}
            a+b &= b+a \\
            1+2= & 2+1
        \end{align}
    

    % 按&号对齐,--带编号 \begin{align} a+b &= b+a \\ 1+2= & 2+1 \end{align}

    4.split环境

    当一个公式需要多行排版时,对齐方式也是按&对齐

    %一个公式的多行排版--带编号
        \begin{equation}
            \begin{split}
            \cos 2x &= \cos^2 x - \sin^2x \\
            &=2\cos^2x-1
            \end{split} 
        \end{equation}
    

    %一个公式的多行排版--带编号 \begin{equation} \begin{split} \cos 2x &= \cos^2 x - \sin^2x \\ &=2\cos^2x-1 \end{split} \end{equation}

    5.cases环境

    分段函数或者有左大括号的数学公式

    %case环境, text{}在数学模式中处理中文-带编号
        \begin{equation}
            D(x)=\begin{cases}
            1, & \text{如果} x \in \mathbb{Q};\\
            0, & \text{如果} x \in \mathbb{R}\setminus\mathbb{Q}
            \end{cases}
        \end{equation}
    

    %case环境, text{}在数学模式中处理中文-带编号 \begin{equation} D(x)=\begin{cases} 1, & \text{如果} x \in \mathbb{Q};\\ 0, & \text{如果} x \in \mathbb{R}\setminus\mathbb{Q} \end{cases} \end{equation}

    (二)实例

    1.源代码

    %导言区
    \documentclass{ctexart}
    
    %导入宏包
    \usepackage{amsmath}
    \usepackage{amssymb}
    
    %正文区
    \begin{document}
        %多行公式--带编号
        \begin{gather}
            a + b +c = b + a \\
            1+2 = 2 + 1
        \end{gather}
        %多行公式--不带编号1
        \begin{gather*}
            a + b = b + a \\
            1+2 = 2 + 1
        \end{gather*}
        
        %多行公式--带编号2 \notag 阻止编号
        \begin{gather}
        a + b = b + a \notag \\
        1+2 = 2 + 1 \notag
        \end{gather}
        
        % 按&号对齐,--带编号
        \begin{align}
            a+b &= b+a \\
            1+2= & 2+1
        \end{align}
        
        % 按&号对齐,--不带编号
        \begin{align*}
        a+b &= b+a \\
        1+2 &=2+1
        \end{align*}
        
        %一个公式的多行排版--带编号
        \begin{equation}
            \begin{split}
            \cos 2x &= \cos^2 x - \sin^2x \\
            &=2\cos^2x-1
            \end{split} 
        \end{equation}
        
        %一个公式的多行排版--不带编号
        \begin{equation*}
        \begin{split}
        \cos 2x &= \cos^2 x - \sin^2x \\
        &=2\cos^2x-1
        \end{split} 
        \end{equation*}
        
        %case环境, text{}在数学模式中处理中文-带编号
        \begin{equation}
            D(x)=\begin{cases}
            1, & \text{如果} x \in \mathbb{Q};\\
            0, & \text{如果} x \in \mathbb{R}\setminus\mathbb{Q}
            \end{cases}
        \end{equation}
        
        %case环境, text{}在数学模式中处理中文-不带编号
        \begin{equation*}
        D(x)=\begin{cases}
        1, & \text{如果} x \in \mathbb{Q};\\
        0, & \text{如果} x \in \mathbb{R}\setminus\mathbb{Q}
        \end{cases}
        \end{equation*}
    
    \end{document}
    
    

    2.输出效果

    04.png

    本系列是有关LaTeX的学习系列,共计19篇,本章节是第16篇。
    前一篇:15LaTeX学习系列之---LaTeX里插入数学公式
    后一篇:17LaTeX学习系列之---LaTeX的版面设计
    总目录:19LaTeX学习系列之---LaTeX的总结

    作者:Mark

    日期:2019/03/06 周三

    相关文章

      网友评论

        本文标题:16LaTeX学习系列之---LaTeX数学公式的补充

        本文链接:https://www.haomeiwen.com/subject/gacxpqtx.html