错误:命令 \" 在输入行 x 的数学模式下无效

错误:命令 \" 在输入行 x 的数学模式下无效

我收到以下错误

Command \" invalid in math mode on input line 60. 

我的输入行 58-61 是

\begin{equation}
\label{1}
\Delta x=x_{efter}-x_{före}
\end{equation}

问题可能不是出在\Delta。问题似乎出在x_{efter}-x_{före}。我试过使用,$....$但它不起作用。我是 LaTeX 新手,但我认为我已经导入了正确的包。

答案1

连字符ö由 组成\"{o},这可以在文本中出现,但不能在数学模式中出现。以下是它的使用方法:

enter image description here

\documentclass{article}
\usepackage[utf8]{inputenc}% http://ctan.org/pkg/inputenc
\usepackage{amsmath}% http://ctan.org/pkg/amsmath
\begin{document}
\begin{equation}
  \Delta x = x_\text{efter} - x_\text{före} \label{eq:difference}
\end{equation}
\end{document}

amsmath提供以文本模式\text{<stuff>}打印的功能。<stuff>inputenc允许您在代码中按原样指定连字符。

附注:最好用描述性名称来标记事物。

相关内容