由其他数学公式定义的数学公式的间距

由其他数学公式定义的数学公式的间距

我需要确保一些短数学公式(如$x^2$)的间距与其他稍长的数学公式(如)的间距完全相同$(x+1)^2-1$。结果应该是$x^2$左右两侧有额外的空格。

我希望类似的东西\hphantom{$(x+1)^2-1$}{$x^2$}可以做到这一点,但它看起来\hphantom没有第二个参数。

有什么建议么?

编辑。@projetmbc 我经常需要在 tikz 图片中定位事物,以便轴上的数字与其他图片中的位置完全相同,如下例所示(现在使用 egreg 的解决方案很容易实现这一点): 在此处输入图片描述

答案1

在此处输入图片描述

\documentclass{article}
\usepackage{calc}

\newcommand{\inset}[2]{%
  % #1 = formula to typeset
  % #2 = formula to occupy the space of
  \makebox[\widthof{$#2$}]{$#1$}%
}

\begin{document}

Some text $(x+1)^2-1$ and some text.  

Some text $\inset{x^2+2x}{(x+1)^2-1}$ and some text.  

\end{document}

相关内容