余分な }、または忘れられた $ \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}

編集済みデイビッドのコメントなので、少なくとも間違いが少なくなったと思います。

関連情報