具有自动对齐数学表达式的 PSTricks 环境

具有自动对齐数学表达式的 PSTricks 环境

代码

考虑以下(或多或少相关的)代码:

\documentclass{article}

\usepackage{mathtools}
\usepackage{pstricks}

\begin{document}

\fbox{\begin{pspicture}(10,10)
  \rput(5,5){\emph{Aligned} math expression on top of a PSTricks drawing}
\end{pspicture}}

\end{document}

问题

如代码所示,我想要一个对齐在 PSTricks 绘图上添加数学表达式。这可行吗?如果可行,我该怎么做?

答案1

关键是使用水平数学($...$)而不是align\[...\],它们是垂直模式构造。

\documentclass{article}

\usepackage{mathtools}
\usepackage{pstricks}

\begin{document}

\fbox{\begin{pspicture}(10,10)
  \rput(5,5){$\begin{aligned}
   y &= mx + b\\
   y_1 &= 3x^2 + 2x + 4
   \end{aligned}$}
\end{pspicture}}

\end{document}

在此处输入图片描述

ps 这些tabstackengine结构也是水平的,也可以在这里使用。

相关内容