如何实现公式跨array对齐?

2019-10-20 20:32发布

![跨array对齐](https://wenda.latexstudio.net/data/attach/191020/Ll0qNbGT.png 跨array对齐) ```tex $$ IM_x^t...

![跨array对齐](https://wenda.latexstudio.net/data/attach/191020/Ll0qNbGT.png "跨array对齐") ```tex $$ IM_x^t\left\{\begin{array}{} {CT_x^t } , {(t=1)} \\ {\left\{\begin{array}{l} {CT_x^t-CT_x^t *(C T_x^t-IM_x^{t-1})} &, {\text { if } IM_x^{t-1} \neq 0} \\ {CT_x^t * 0.5} &, {\text { if } IM_x^{t-1}=0} \end{array}\right.} \end{array}\right. $$ ``` 如图,如何实现array内和嵌套array内的公式按照逗号对齐呢? 要达到的效果是类似这样的: ![对齐效果](https://wenda.latexstudio.net/data/attach/191020/qddj3DpI.png)
3条回答
目前 `$$` 已经不建议了,比较建议你读 lshort-zh-cn 了解目前比较建议的方式和不建议它的原因…… 最小工作示例强调的是一个能够让他人编译的东西,你只给这么一小段代码不能算最小工作示例…… 别拿 mathtype 转代码…… 完整的 MWE 如下 ```tex \documentclass{article} \usepackage{mathtools} \begin{document} \[ IM_x^t \begin{cases} CT_x^t\\ {}\smash[b]{ \begin{cases} CT_x^t - CT_x^t \ast \bigl( CT_x^t - IM_x^{t-1} \bigr), & \text{if} \; IM_x^{t-1} \neq 0, \\ CT_x^t \ast 0.5, & \text{if} \; IM_x^{t-1}=0. \end{cases} } \end{cases} \] \end{document} ``` 自己编译一遍看看结果吧……

一周热门 更多>