在文本中使用 amsmath x

在文本中使用 amsmath x

这可能是一个简单的问题,但我不知道 amsmath 在方程式中产生的 x 叫什么,所以我不知道如何在文本中使用它。我想做这样的事情:

\begin{equation}
some equation that uses x_1
\end{equation}
where x$_{\text{1}}$ = something

我弄清楚了如何在文本中输入下标,但当我运行程序时,等式部分的 x 看起来与文本中的 x 大不相同。有什么线索吗?

谢谢!

答案1

这是经过多次尝试后得出的一个可能的解决方案。

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\text{some equation that uses } x_1
\end{equation}
where $x_1=$ something.   
\end{document}

相关内容