暗示两行之间的符号

暗示两行之间的符号

我想实现下面的效果:

在此处输入图片描述

我能够使用下面的代码实现一些类似的功能,但这是一个错误的解决方案。

\begin{ceqn}
\begin{equation*}
\begin{gathered}
x_{1}=h \\
x_{2}=\dot{h} \\
\downarrow \\
\dot{x_{1}} = x_{2}\\
\dot{x_{2}} = u
\end{gathered}
\end{equation*}
\end{ceqn}

我的错误解决方法:

在此处输入图片描述

您能告诉我如何才能达到预期的效果吗?

先感谢您!

答案1

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation*}
\begin{aligned}
x_1&=p\\
x_2&=\dot{p}
\end{aligned}
\quad\Rightarrow\quad
\begin{aligned}
\dot{x}_1&=x_2\\
\dot{x}_2&=u
\end{aligned}
\end{equation*}
\end{document}

在此处输入图片描述

答案2

简单版本(您可能需要调整间距):

含义

\documentclass{article}

\usepackage{amsmath}

\begin{document}
\[
\begin{gathered}
x = y\\
y = x
\end{gathered} \Rightarrow \begin{gathered}
x = y\\
y = x
\end{gathered}
\]
\end{document}

相关内容