这是我的代码,但第二张幻灯片没有生成。为什么?
\documentclass[aspectratio=169]{beamer}
\usetheme{Boadilla}
\title{Bipass on earth}
\author{M. H. Loi}
\institute{University of South}
\date{Oct 19, 2016}
\begin{document}
\frame{\titlepage}
\end{document}
\section{Section 1}
\subsection{sub a}
\begin{frame}
\frametitle{Introduction}
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
\end{frame}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}
\frametitle{Outline}
\tableofcontents
\end{frame}
答案1
\end{document}
结束文件的编译,如下所示之后的内容\end{document}
将被忽略。我猜你误用了
\begin{document}
\frame{\titlepage}
\end{document}
表示显示标题的单个框架。由于呈现框架的方式有两种 - 一种是通过\frame
命令另一个是通过frame
环境,也许你以为\end{document}
是\end{frame}
。但如果你使用\frame
命令设置框架,不需要\end{frame}
。
\documentclass[aspectratio=169]{beamer}
\usetheme{Boadilla}
\title{Bipass on earth}
\author{M. H. Loi}
\institute{University of South}
\date{Oct 19, 2016}
\begin{document}
\frame{\titlepage}
%\end{document} % < ---------- ...this should not be here.
\section{Section 1}
\subsection{sub a}
\begin{frame}
\frametitle{Introduction}
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
\end{frame}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}
\frametitle{Outline}
\tableofcontents
\end{frame}
\end{document} % < ---------- ...it should probably be here.