额外的 },或忘记了 $ \end{frame} & 缺少 $ 插入 \end{frame}

额外的 },或忘记了 $ \end{frame} & 缺少 $ 插入 \end{frame}

我花了很长时间尝试编译它,直到现在。出现以下错误:

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

它的代码很大,所以我将包括我一直在使用的部分:

\documentclass[trans,9pt]{beamer}
\usepackage[spanish]{babel}
\usepackage[latin1]{inputenc}
\usepackage{lmodern}
\usepackage{bookmark}
\usepackage{graphicx}
\usetheme{Madrid}
\usecolortheme{wolverine}
\hypersetup{urlcolor=blue}
\tiny



\title{Comparaci\'on entre fotones y leptones sin carga}
\subtitle{Los neutrinos y fotones para ver el universo}
\author{Pablo \'Alvarez Rodr\'iguez}
\institute{Universidad de Oviedo}
\subject{F\'isica Moderna}

\begin{document}

\begin{frame}
\titlepage
\begin{center}
\includegraphics{UNIOVIlogo.jpg}
\end{center}
\end{frame}

\begin{frame}
\frametitle{\'Indice}
\tableofcontents

\end{frame}

\begin{frame}
\section{Introducci\'on}
\frametitle{Introducci\'on}
\begin{itemize}
\item Realizar\'e una comparativa entre neutrinos y fotones  con respecto a   su eficiencia en la astrof\'isica de part\'iculas. \pause
\item Expliar\'e los fen\'omenos necesarios para la producci\'on de neutrinos y fotones. \pause
\item Hablar\'e de algunos experimentos en los que se estudia esta disciplina. \pause
\end{itemize}
\end{frame}

\section{Breve repaso a part\'iculas elementales}
\begin{frame}
\frametitle{Breve repaso a part\'iculas elementales}
\begin{center}
\includegraphics[height=7.5cm, width=7.5cm, keepaspectratio]{particulaselementales.png}
\end{center}
\end{frame}
\subsection{Leptones}

\begin{frame}
\frametitle{Leptones}
Aqu\'i se encuentran:
\begin{itemize}
\item Los electrones, con masa $0.511 MeV$ y carga el\'ectrica $-1$ \pause
\item Los muones, con masa $105,66 MeV$ y carga el\'ectrica $-1$ \pause
\item Los tauones, con masa $1777 MeV$ y,carga el\'ectrica $-1$ \pause
\item Y los neutrinos, que son tres, y tienen la particularidad de no tener carga: \pause
\begin{itemize}
\item neutrino electr\'onico $\nu_e$. Su masa es menor que $2 eV$\pause
\item neutrino mu\'onico $\nu_\mu$. Su masa es menor que $0.19 MeV$\pause
\item neutrino tau\'onico $\nu_\tau$.Su masa es menor que $18.2 MeV$\pause
\end{itemize}
\item Todas tienen spin $1/2$; por lo que obedecen a la estad\'istica de Fermi-Dirac \pause
\end{itemize}
\end{frame}

% And therefore, for the bibliography, after non-used-right-now-text:

\begin{frame}
\frametitle{Bibliograf\'ia}
\begin{thebibliography}{10}
\setbeamertemplate{bibliography item}[book]
\bibitem{Author}
\newblock{\emph{F\'isica para la ciencia y la tecnolog\'ia} Volumen 3: F\'isica Moderna}
\newblock Paul A. Tipler y Gene Mosca
\newblock 6\textsuperscript{a} edici\'on 2012
\setbeamertemplate{bibliography item}[book]
\bibitem{Author}
\newblock{\emph{F\'isica Te\'orica} Volumen 3: Mec\'anica Cu\'antica}
\newblock B. G. Levich
\newblock 1\textsuperscript{a} edici\'on 1974
\setbeamertemplate{bibliography item}[online]
\newblock Wikipedia: Leptones
\newblock \url{http://es.wikipedia.org/wiki/Lept\%C3\%B3n}
\setbeamertemplate{bibliography item}[online]
\newblock Información sobre Tauones
\newblock \url{http://astrojem.com/teorias/tauones.html}
\end{thebibliography}

\end{frame}

\end{document}

我已经工作了几个小时,直到现在它才正常工作,当时 pdf 没有生成,但是出现了以下错误:

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

我不知道问题出在哪里,我已经修改了很多次。有什么帮助吗?

答案1

要找到问题,只需注释掉代码块:如果错误仍然存​​在,则注释的代码不负责(至少对该错误不负责);否则,问题一定出在注释的代码上。使用这种方法,可以将问题隔离到参考书目中的最后一个项目中。

这里的问题是,你直接使用看似 unicode 编码的编码输入了一个重音字符,但告诉 TeX 你的输入编码是latin1。许多编辑器现在默认使用 UTF8 编码,因此,如果你没有明确设置编码,很可能就是这种情况。如果你需要你的文件采用该编码,你要么需要确保文件确实被编码为,latin1要么你必须使用重音标记(在这种情况下你inputenc根本不需要):

\documentclass[trans,9pt]{beamer}
\usepackage[spanish]{babel}
%\usepackage[latin1]{inputenc}% if the file is really encoded this way

\begin{document}

  \begin{frame}
    \frametitle{Bibliograf\'ia}
    \begin{thebibliography}{10}
      \setbeamertemplate{bibliography item}[online]
      \newblock Informaci\'on sobre Tauones
      \newblock \url{http://astrojem.com/teorias/tauones.html}
    \end{thebibliography}

  \end{frame}

\end{document}

或者,如果您可以对文件使用 unicode 编码,则可以直接输入字符并将选项更改为inputenc

\documentclass[trans,9pt]{beamer}
\usepackage[spanish]{babel}
\usepackage[utf8]{inputenc}

\begin{document}

  \begin{frame}
    \frametitle{Bibliograf\'ia}
    \begin{thebibliography}{10}
      \setbeamertemplate{bibliography item}[online]
      \newblock Información sobre Tauones
      \newblock \url{http://astrojem.com/teorias/tauones.html}
    \end{thebibliography}

  \end{frame}

\end{document}

根据以下情况编辑David 的评论所以希望现在它至少不那么错误了。

相关内容