latex_9
Posted hkkeryu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了latex_9相关的知识,希望对你有一定的参考价值。
% 导言区 多行公式排版 documentclass{article} usepackage{ctex} %引入中文宏包 usepackage{amsmath} usepackage{amssymb} %正文区 egin{document} %gather和gather*环境(可使用\换行) %带编号 egin{gather} a+b=b+a ab ba end{gather} %不带编号 egin{gather*} 3+5=5+3=8 3 imes 5 = 5 imes 3 end{gather*} % 在\前使用 otag 阻止编号 egin{gather} 3^2 + 4^2 =5^2 otag 5^2 + 12^2 =13^2 otag 3^2 + 4^2 =5^2 end{gather} % align 和align* 环境(用& 进行对齐) % 带编号 egin{align} x & =t+cos t + 1 y & =2sin t end{align} % 不带编号 egin{align*} x & =t & x &= cos t & x &= t y & =2t & 1+y &= sin(t+1) & 98y &= sin t end{align*} % split 环境(对齐采用align环境的方式,编号在中间) egin{equation} egin{split} cos 2x &= cos^2 x - sin^2 x &= 2cos^2 x -1 end{split} end{equation} %cases 环境 % 每行公式中使用&分隔为两部分 % 通常表示值和后面的条件 % in 为属于 % mathbb 为花体 % setminus 为“” % ext{如果} 临时文本模式 egin{equation} D(x)=egin{cases} 1,& ext{如果} x in mathbb{Q}; 0,& ext{如果} x in mathbb{R}setminus mathbb{Q}. end{cases} end{equation} end{document}
以上是关于latex_9的主要内容,如果未能解决你的问题,请参考以下文章