我在这里有一句简单的话:
Let training data \textit{X} consist of x_{i...n} observations, where....
目的是让X有下标在。然而,在 x_i..n 之后,所有以下文本也变为斜体,如下所示:
为什么会发生这种情况?
答案1
您显示的代码会产生一条错误消息:
! Missing $ inserted.
当 TeX 发现 时_
,因为该字符仅在数学模式下合法。此后的输出将不可靠。处理文件时,一旦出现错误,请立即修复。
您的输入应该是
Let the training data \(X\) consist of \(x_{i\dots n}\) observations, where
\(n\) is the number of training data samples, \(X\) represents the feature
vectors of
请注意数学符号是如何被正确地包围的,\(...\)
这使得 TeX 在数学模式下排版它们(在需要的地方自动应用斜体)。