帧投影仪中的方程式 - 缺少 $ 错误

帧投影仪中的方程式 - 缺少 $ 错误

这是带有方程的框架的代码:

\documentclass[pdf]{beamer}
\usetheme{CambridgeUS}
\mode<presentation>{}
\usepackage{braket}

\title{title title}

\author{Proton}
\begin{document}

\begin{frame}
\titlepage
\end{frame}
\begin{frame}{title}
\begin{itemize}
    \item From Classical Gibbs Stochastic:
    \begin{equation}
        $$e^3$$
    \end{equation}
\end{itemize}
\end{frame}

\end{document}

当我尝试编译此代码时出现以下错误:

Missing $ inserted. \end{frame}
You can't use `\eqno' in math mode. \end{frame}
Missing $ inserted. \end{frame}
Font shape `OT1/cmss/m/n' in size <4> not available(Font) size <5> substituted
Size substitutions with differences(Font) up to 1.0pt have occurred.

如果没有美元符号,我会收到此错误:

miktex-makemf.log You may want to visit the MiKTeX proj

ect page, if you need help.

Sorry, but miktex-makepk did not succeed for the following reason: PK font mathkerncmssi10 could not be created. The log file hopefully contains the information to get MiKTeX going again: C:/Users/ofir arzi/AppData/Local/MiKTeX/2.9/miktex/log/miktex-makepk.log You may want to visit the MiKTeX project page, if you need help.

Process exited with error(s)

答案1

同时使用\begin{equation} ... \end{equation} $$ ...$$作为实际数学材料的包装器是错误的。使用其中一个包装器,但并非两者兼而有之如果您想要一个编号显示的方程式,则应使用前者,如果您想要一个不编号显示的方程式,则应使用后者。

此外,在 LaTeX 文档中使用$$来启动和终止 TeX 的显示数学模式已被弃用 —— 至今已被弃用 20 多年。请使用\[ ... \]。有关此主题的更多信息,请参阅以下两篇文章:

相关内容