错误,缺少$插入,救命!

错误,缺少$插入,救命!

我很高兴能有一份工作,我想做点什么,所以这次我做了最困难的手术,这是我的代码:

\documentclass{beamer}
\usepackage[spanish]{babel}
\usetheme{Madrid}
\title{4.2 Funciones Integrables}
\author{J.~Zacarias\inst{} \and P.~Rodr\'iguez\inst{} \and H.~Dom\'inguez \inst{}}
\institute[] % (optional, but mostly needed)
{
  \inst{}%
  Universidad Aut\'onoma de Yucat\'an\\
  Facultad de Matem\'aticas}
\date{Viernes 4 de diciembre de 2015}
\subject{}
\AtBeginSubsection[]
{
  \begin{frame}<beamer>{Funciones Integrables}
    \tableofcontents[currentsection,currentsubsection]
  \end{frame}
}
% Let's get started
\begin{document}
\begin{frame}
  \titlepage
\end{frame}
\begin{frame}{Fundamentos y conceptos b\'asicos de integraci\'on`}
\begin{block}{Definici\'on 4.2.1.}
Sea $f : A \subset \mathbb{R}^n \rightarrow \mathbb{R}\ $acotada .Si $B$ \subset\ A \ $definimos$: \\
 \item 
    \centering $M_B(f)=sup \{f(x) : x\in B\}\\
 \item
    \centering $m_B(f) = inf\{f(x) : x\in B\}
\end{block}
\end{frame}
\end{document}

答案1

您的输入有些问题;您主要是忘记平衡公式的开和闭$。这是您的代码的一部分。

\begin{block}{Definici\'on 4.2.1.}
Sea $f : A \subset \mathbb{R}^n \rightarrow \mathbb{R}\ $acotada .Si $B$ \subset\ A \ $definimos$: \\
 \item 
    \centering $M_B(f)=sup \{f(x) : x\in B\}\\
 \item
    \centering $m_B(f) = inf\{f(x) : x\in B\}
\end{block}
  1. 一般来说,结尾后面$跟着一个空格或标点符号;不要在它前面加空格。

  2. 句子结束句号必须位于最后一个单词旁边

  3. 公式包含一切数学知识:$B\subset A$

  4. 常见函数名称,如对数、上确界、下确界等,应当用正楷书写。

  5. 不要用以下方式替代显示数学模式\centering

  6. 回想一下,\centering一直持续到当前组的结束

修复版本

\begin{block}{Definici\'on 4.2.1.}
Sea $f\colon A \subset \mathbb{R}^n \rightarrow \mathbb{R}$ acotada.
Si $B \subset A$ definimos:
\begin{gather*}
M_B(f)=sup \{f(x) : x\in B\}\\
m_B(f) = inf\{f(x) : x\in B\}
\end{gather*}
\end{block}

相关内容