\tau \epsilon \chi ! 缺少 $ 插入

\tau \epsilon \chi ! 缺少 $ 插入

初学者在使用 Beamer 进行简单演示时遇到了问题

\documentclass{beamer}

\begin{document}
\begin{frame}
  \tau \epsilon \chi
\end{frame}
\end{document}

上述操作失败,并显示消息“!缺少 $ 插入。”,并等待我在转换为 pdf 时执行某些操作。我尝试添加指令\usepackage[utf8]{inputenc}\usepackage[greek]{babel}。我也没有看到需要使用任何其他包的参考。我到底缺少什么?

答案1

你需要把数学融入其中数学模式,您可以通过将其括在 中来实现$...$,对于内联方程,或\[...\]对于显示方程:

\documentclass{beamer}

\begin{document}
\begin{frame}
  $\tau \epsilon \chi$

 For displayed equations:
 \[ \tau \epsilon \chi \]

\end{frame}
\end{document}

答案2

根据您的问题,我\tau \epsilon \chi建议文本您想要排版。

此解决方案可让您的希腊语文本很好地融入文本:

\documentclass{beamer}
\usepackage[LGR,T1]{fontenc}
\newcommand{\textgreek}[1]{\begingroup\fontencoding{LGR}\selectfont#1\endgroup}
\begin{document}
    \begin{frame}
        This \textgreek{teq} fits nicely in some text.

        This $\tau \epsilon \chi$ fits not so nice.
    \end{frame}
\end{document}

渲染

编码参考:第 36 页

如果你想坚持使用希腊字母的名称,你可以使用包textgreek,例如

\documentclass{beamer}
\usepackage{textgreek}
\begin{document}
    \begin{frame}
        This \texttau \textepsilon \textchi~fits nicely in some text.

        This $\tau \epsilon \chi$ fits not so nicely.
    \end{frame}
\end{document}

以产生相同的结果。

相关内容