目录
目录
本系列是有关LaTeX的学习系列,共计19篇,本章节是第16篇。
前一篇:15LaTeX学习系列之---LaTeX里插入数学公式
后一篇:17LaTeX学习系列之---LaTeX的版面设计
总目录:19LaTeX学习系列之---LaTeX的总结
前言
前一节我们学习了怎么在LaTeX中插入数学公式,本小节,我们补充在LaTeX中长公式的使用。
(一)知识点说明
1.基础细节
- ** 号问题:在环境中有星号则无编号,无星号有编号。
- \ \ :换行
- \ref{fig:01}引用标签,\label{fig:01}添加标签,实现交叉引用
- \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}
\]
\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*}
\]
\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}
\]
\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}
\]
\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}
\]
\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}
\]
\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.输出效果
本系列是有关LaTeX的学习系列,共计19篇,本章节是第16篇。
前一篇:15LaTeX学习系列之---LaTeX里插入数学公式
后一篇:17LaTeX学习系列之---LaTeX的版面设计
总目录:19LaTeX学习系列之---LaTeX的总结