当我在 beamer 中写方程式时,我遇到了 \end{frame} 的很多错误

当我在 beamer 中写方程式时,我遇到了 \end{frame} 的很多错误
\begin{frame}
\subsection{Grouping of candidate nodules}
\frametitle{\begin{center}
        Grouping of candidate nodules
\end{center}}
\begin{equation*}
$$ NoduleThickness = Total number of slices having that nodule $$
\end{equation*}
\begin{equation*}
$$ \% wallconnectivity  = \frac{No.of slices with wall connected nodule region\times 100}{Nodule Thickness} $$
\end{equation*}
\end{frame}

错误

Missing $ inserted. \end{frame}
Extra }, or forgotten $. \end{frame}

请帮忙

答案1

你有很多问题:

  • 在方程中嵌套方程:\begin{equation}$$ ...$$\equation}是错误的
  • 章节、小节……应该(通常)位于框架之外
  • 仅在演示中使用\subsection{...}是行不通的。它应该在某处之前\section{...}
  • 等式中的文本必须声明为文本,否则 Latex 会将其视为一长串变量......
  • 您的方程式太长,无法放入框架中,因此您需要考虑将文本分成两行:
  • 框架标题居中。你这样做是错误的。你应该充分定义 beamer 模板(见姆韦以下)
  • 如果你能提供一份完整的小文档,我们称之为姆韦,以 开头\documentclass{beamer},以 结尾\end{document},已加载序言中所有相关包以及您的beamer设置和其他(仅相关)定义。帮助我们帮助您!

\documentclass{beamer}
\setbeamertemplate{frametitle}
    {
    \begin{centering}
    \insertframetitle\par
    \end{centering}
    }
\usepackage{mathtools}

\begin{document}
\section{had to be somewhere before subsections}
\subsection{Grouping of candidate nodules}

\begin{frame}
\frametitle{Grouping of candidate nodules}
\[
\text{NoduleThickness} = \text{Total number of slices having that nodule}
\]
\[
\% wallconnectivity  = \frac{\splitfrac{\text{No. of slices with wall}}
                                       {\text{connected nodule region}}\times 100}
                            {\text{Nodule Thickness}}
\]
\end{frame}
\end{document}

在此处输入图片描述

相关内容