Beamer。无输出页面

Beamer。无输出页面

这是我第一次用于beamer论文演示,我开始编写下面的程序,但它不起作用,每次我编译它时,都会出现错误消息“没有输出页面”。程序:

\documentclass{beamer}
%
\usetheme{Boadilla}
\title{Présentation du projet de fin d'étude}
\subtitle{Commande adaptative de la machine asynchrone}
\author{présenté par:\\
GUENDOUZ \\
Sous la direction de :\\
Pr A.BOUHENNA}
\institute{Ecole National Polythechnique d'Oran MAURICE AUDIN}
\date{\today}
\begin{document}
\section{Plan de travail}
\begin{frame}
\frametitle{Plan de travail}
\begin{itemize}
\item Présentation du thème (Thème,Problématique et objectifs)
\item Présentation de la machine asynchrone 
\item La commande vectorielle par orientation de flux indirect(théorie et application)
\item La commande adaptative (théorie et application)
\item Conclusion
\end{frame}
\end{document}

答案1

\end{itemize}您忘记在列表末尾添加。

\documentclass{beamer}
\usetheme{Boadilla}
\title{Présentation du projet de fin d'étude}
\subtitle{Commande adaptative de la machine asynchrone}
\author{présenté par:\\
GUENDOUZ \\
Sous la direction de :\\
Pr A.BOUHENNA}
\institute{Ecole National Polythechnique d'Oran MAURICE AUDIN}
\date{\today}
\begin{document}
\maketitle % <-- add this to make the title slide

\section{Plan de travail}
\begin{frame}
\frametitle{Plan de travail}
\begin{itemize}
\item Présentation du thème (Thème,Problématique et objectifs)
\item Présentation de la machine asynchrone 
\item La commande vectorielle par orientation de flux indirect(théorie et application)
\item La commande adaptative (théorie et application)
\item Conclusion
\end{itemize} % <-- this was missing
\end{frame}
\end{document}

相关内容