如何在一行中拟合长时间运行的方程

如何在一行中拟合长时间运行的方程

我希望这个等式只用一行或者以任何其他方式来写出。

\documentclass[12pt,a4paper]{report}
    \usepackage{mathbbol}
    \usepackage{mathtools}
    \usepackage{amsfonts}
    \usepackage{amssymb}
    \usepackage{braket}
    \begin{document}
    \begin{equation*}
    \left(1-\iota\frac{J_x\epsilon}{\hbar}-\frac{\epsilon^2}{2!}\frac{J_x^2}{\hbar^2}+\ldots\right)\left(1-\iota\frac{J_y\epsilon}{\hbar}-\frac{\epsilon^2}{2!}\frac{J_y^2}{\hbar^2}+\ldots\right)-\left(1-\iota\frac{J_y\epsilon}{\hbar}-\frac{\epsilon^2}{2!}\frac{J_y^2}{\hbar^2}+\ldots\right)\left(1-\iota\frac{J_x\epsilon}{\hbar}-\frac{\epsilon^2}{2!}\frac{J_x^2}{\hbar^2}+\ldots\right)
    \end{equation*}
    \end{documen}

答案1

\documentclass[12pt,a4paper]{report}
    \usepackage{mathbbol}
    \usepackage{mathtools}
    \usepackage{amsfonts}
    \usepackage{amssymb}
    \usepackage{braket}

    \begin{document}

    \begin{align*}
&    \left(1-\iota\frac{J_x\epsilon}{\hbar}-\frac{\epsilon^2}{2!}\frac{J_x^2}{\hbar^2}+\ldots\right)\left(1-\iota\frac{J_y\epsilon}{\hbar}-\frac{\epsilon^2}{2!}\frac{J_y^2}{\hbar^2}+\ldots\right)\\
&\quad-\left(1-\iota\frac{J_y\epsilon}{\hbar}-\frac{\epsilon^2}{2!}\frac{J_y^2}{\hbar^2}+\ldots\right)\left(1-\iota\frac{J_x\epsilon}{\hbar}-\frac{\epsilon^2}{2!}\frac{J_x^2}{\hbar^2}+\ldots\right)
    \end{align*}

    \end{document}

相关内容