我正在用 Beamer 进行论文演示,但我遇到了同样的问题,每次编译时都不知道原因,每次日志文件中都会出现“!缺失数字,视为零”,如能提供任何帮助,我将不胜感激。谢谢。
附言:我编辑了帖子并发布了我的真实代码而不仅仅是一个示例。
\documentclass[12pt]{beamer}
\usetheme{Singapore}
\usepackage[utf8]{inputenc}
\usepackage[french]{babel}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{appendixnumberbeamer}
%-------------------------------------------------------------------------------
%Footer section
%-------------------------------------------------------------------------------
\setbeamercolor{footlinerule}{use=structure,bg=structure.fg!25!bg}
\setbeamertemplate{footline}
{%
\begin{beamercolorbox}[wd=\paperwidth,ht=0.5ex,dp=0ex,center]{footlinerule}
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=\paperwidth,ht=0.6ex,dp=0ex,center]{empty}
\end{beamercolorbox}%
\leavevmode%
\hbox{%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=2ex,center]{author in head/foot}%
\usebeamerfont{author in
head/foot}%
\insertshortauthor\hspace{1em}(\insertshortinstitute)
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=2ex,center]{title in head/foot}%
\usebeamerfont{title in head/foot}\insertshorttitle
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=2ex,right]{date in head/foot}%
\insertframenumber{} / \inserttotalframenumber\hspace*{2ex}
\end{beamercolorbox}}%
\vskip0pt%
}%
%-------------------------------------------------------------------------------
%Report title
%-------------------------------------------------------------------------------
\author{Me}
\title{application web pour gestion des filtres}
%\setbeamercovered{transparent}
\setbeamertemplate{navigation symbols}{}
\logo{\includegraphics[scale=0.2]{logo.png}}
\institute[ESSECT]{ESSECT}
\date{18 mai 2015}
\subtitle{Rapport du projet fin d’étude}
%-------------------------------------------------------------------------------
%sommaire automatique
%-------------------------------------------------------------------------------
\setbeamerfont{myTOC}{series=\bfseries,size=\Large}
\AtBeginSection[]
{
\begin{frame}
\frametitle{Sommaire}
\tableofcontents[currentsection, hideothersubsections, pausesubsections]
\end{frame}
}
\begin{document}
\begin{frame}[plain,noframenumbering]
\titlepage
\end{frame}
\begin{frame}[allowframebreaks]
\frametitle{Table des matières}
\tableofcontents[pausesections]
\end{frame}
\begin{frame}[allowframebreaks]
\frametitle{Cadre du projet et l'étude de l'éxistant}
\section[]{Cadre du projet et l'étude de l'existant}
\subsection{Introduction}
Dans ce niveau on va comprendre le domaine ou le metier de l'entreprise et des personnes qui y travaillent pour mieux satisfaire leurs besoins. Il s'agit aussi de construire
l'organigramme de l'organisation l'étudiée.
\end{frame}
\begin{frame}[allowframebreaks]
\subsection{Cadre du stage}
\end{frame}
\begin{frame}[allowframebreaks]
\subsubsection{Environnement du stage}
\end{frame}
\begin{frame}[allowframebreaks]
\subsubsection{Historique}
\subsubsection{Principales missions}
\end{frame}
\begin{frame}[allowframebreaks]
\subsection{L'organigramme}
\end{frame}
\begin{frame}[allowframebreaks]
\subsection{Étude de l'éxistant}
\end{frame}
\begin{frame}[allowframebreaks]
\subsubsection{Déscription}
\subsubsection{Analyse de l'éxistant}
\end{frame}
\begin{frame}[allowframebreaks]
\subsubsection{Problématiques}
\end{frame}
\begin{frame}[allowframebreaks]
\subsubsection{Solution envisagée}
\end{frame}
\begin{frame}[allowframebreaks]
\subsection{Méthodologie de developpement et conception}
\end{frame}
\begin{frame}[allowframebreaks]
\subsubsection{Modèle de conception}
\end{frame}
\begin{frame}[allowframebreaks]
\subsubsection{Langage UML}
\end{frame}
\begin{frame}[allowframebreaks]
\subsubsection{Approche en Cascade}
\end{frame}
\begin{frame}
\subsection{Conclusion}
\end{frame}
\begin{frame}[allowframebreaks]
\section{Capture des besoins}
\end{frame}
%-----------------------------------------------------------------------------------------
%Extra slides that won't effect my page numbering
%-----------------------------------------------------------------------------------------
\appendix
\begin{frame}{First Extra slide}
...
\end{frame}
\begin{frame}[allowframebreaks]{References}
\def\newblock{}
\bibliographystyle{plain}
\bibliography{mybib}
\end{frame}
\end{document}
答案1
您在序言中编写了代码,在调用节时设置框架。因此,您不应在此处将节放在框架内。有点重复:
% arara: pdflatex
\documentclass{beamer}
\AtBeginSection[]
{%
\begin{frame}
\frametitle{Sommaire}
\end{frame}
}
\begin{document}
%\begin{frame}
\section[]{Cadre du projet et l'étude de l'existant}
%\end{frame}
\end{document}
顺便说一句:这里发布的代码对于您的最小工作示例来说已经足够了。对于未来的问题,请尝试分解实际错误。