两栏纸上的长方程式(数学工具不起作用。)

两栏纸上的长方程式(数学工具不起作用。)

我有一个方程式,对于两栏纸来说太长了。我写的代码如下:

\begin{equation*}
\begin{split}
J=\frac{\displaystyle -l_2}{\displaystyle sin(\theta_3-\theta_2)}\cdot
\begin{matrix}
sin(\theta_1)sin(\theta_3-\theta_2)+sin(\theta_2)sin(\theta_1-\theta_3)&-sin(\theta_2)sin(\theta_4-\theta_3)\\
-cos(\theta_1)sin(\theta_3-\theta_2)-cos(\theta_2)sin(\theta_1-\theta_3)&cos(\theta_2)sin(\theta_4-\theta_3)
\end{matrix}
 \end{split}
\end{equation*}

但它不起作用。我该怎么办?

答案1

最好的方法是引入一些新的符号,例如,Z=\sin(\theta_3-\theta_2)以便使其更易于阅读和更简短地排版。

假设你需要所有这些术语方程,您可以执行以下操作:

% arara: pdflatex

\documentclass[twocolumn]{article}
\usepackage{mathtools}
\usepackage{blindtext}

\begin{document}
\blindtext
    \begin{multline*}
        J=\frac{-l_2}{\sin(\theta_3-\theta_2)}\cdot \\
        \begin{bmatrix}
            \begin{split}&\sin(\theta_1)\sin(\theta_3-\theta_2)\\&\quad+\sin(\theta_2)\sin(\theta_1-\theta_3)\end{split}&-\sin(\theta_2)\sin(\theta_4-\theta_3)\\[3ex]
            \begin{split}&-\cos(\theta_1)\sin(\theta_3-\theta_2)\\&\quad-\cos(\theta_2)\sin(\theta_1-\theta_3)\end{split}&\cos(\theta_2)\sin(\theta_4-\theta_3)
        \end{bmatrix}
    \end{multline*}
\blindtext
\end{document}

在此处输入图片描述

答案2

为了最大程度地提高可读性,您可以将等式放在页面底部,如下所示(无需修改等式):

\documentclass{article}
\usepackage{multicol,amsmath,lipsum}
\usepackage[margin=2cm]{geometry}
\begin{document}
\begin{multicols}{2} %
\enlargethispage{-2cm}

\begin{picture}(0,0)
\put(0,-600){\hspace{-\parindent}\parbox{\textwidth}{%
\hrulefill
\vspace*{4pt}
\begin{equation*} \label{eqn_first}
J=\frac{\displaystyle -l_2}{\displaystyle sin(\theta_3-\theta_2)}\cdot\
\begin{bmatrix}
sin(\theta_1)sin(\theta_3-\theta_2)+sin(\theta_2)sin(\theta_1-\theta_3)&-sin(\theta_2)sin(\theta_4-\theta_3)\\
-cos(\theta_1)sin(\theta_3-\theta_2)-cos(\theta_2)sin(\theta_1-\theta_3)&cos(\theta_2)sin(\theta_4-\theta_3)
\end{bmatrix}
\end{equation*}}}
\end{picture}%
\enlargethispage{-2cm}
\lipsum[1-6]
\lipsum[2-5]

\end{multicols}
\end{document} 

在此处输入图片描述

我们必须将剩余的文本缩小,以便为公式留出空间\enlargethispage{-2cm}。您可以根据需要控制空间。还有一个widetext 包裹你可以尝试一下。

另一个不错的选择是通过引入新符号来使用快捷方式:

\lipsum[1-6]
\begin{equation*}
J=\frac{\displaystyle -l_2}{\displaystyle sin(\theta_3-\theta_2)}\cdot\
\begin{bmatrix}
A & B\\
C & D
\end{bmatrix}
\end{equation*}
where,

$A=sin(\theta_1)sin(\theta_3-\theta_2)+sin(\theta_2)sin(\theta_1-\theta_3)$

$B=sin(\theta_2)sin(\theta_4-\theta_3)$

$C=-cos(\theta_1)sin(\theta_3-\theta_2)-cos(\theta_2)sin(\theta_1-\theta_3)$

$D=cos(\theta_2)sin(\theta_4-\theta_3)$

\lipsum[2-5]

在此处输入图片描述

相关内容