我在许多(独立)文章或论文中都做过论文。我需要一种很好的展示方式。我的目标是有一个包含论文的 Beamer 文件。我对 Beamer 进行如下编码:
\documentclass[usenames,dvipsnames,xcolor=table,10pt]{beamer}
\usetheme{Boadilla}
\usecolortheme{default}
\AtBeginSection[]
{
\begin{frame}
\frametitle{Outline}
\tableofcontents[currentsection]
\end{frame}
}
\begin{document}
\title[] %optional
{\sc General Title}
\author[] % (optional)
{My Name}
\frame{
\thispagestyle{empty}
\titlepage
}
%%%%%%%%%%%%%%%%%%%% CHAPTER 1
\title %optional
{CHAP 1 title}
\frame{
\thispagestyle{empty}
\titlepage
}
\section{Section 1 in chap 1}
\subsection{subsection 1.1 in chap 1}
\subsection{subsection 1.2 in chap 1}
\section{Section 2 in chap 1}
\subsection{subsection 2.1 in chap 1}
\subsection{subsection 2.2 in chap 1}
%%%%%%%%%%%%%%%%%%%% CHAPTER 2
\title %optional
{CHAP 2 title}
\frame{
\thispagestyle{empty}
\titlepage
}
\section{Section 1 in chap 2}
\subsection{subsection 1.1 in chap 2}
\subsection{subsection 1.2 in chap 2}
\section{Section 2 in chap 2}
\subsection{subsection 2.1 in chap 2}
\subsection{subsection 2.2 in chap 2}
一切都很好,我有每个新部分的大纲。但我希望有每篇文章的大纲。在文章 1 中,我需要在调用大纲时,第二个标题页之后的部分不会出现。在第二个标题页之后,我需要在调用大纲时,第二个标题页之前的部分不会出现。
答案1
您可以将演示文稿分成不同的\part
部分,这样只有当前部分的部分才会显示在目录中。
其他一些评论:
要将多个选项传递给
xcolor
包,正确的语法是\documentclass[xcolor={usenames,dvipsnames,table},10pt]{beamer}
语法
\frame{...}
已经过时了,最好写\begin{frame}...\end{frame}
您可以
\thispagestyle{empty}
使用plain
框架选项\title
我建议不要将格式说明放在宏中,而是暂时修改标题字体
\documentclass[xcolor={usenames,dvipsnames,table},10pt]{beamer}
\usetheme{Boadilla}
\usecolortheme{default}
\AtBeginSection[]
{
\begin{frame}
\frametitle{Outline}
\tableofcontents[currentsection]
\end{frame}
}
\begin{document}
{
\setbeamerfont{title}{series=\scshape}
\title[] %optional
{General Title}
\author[] % (optional)
{My Name}
\begin{frame}[plain]
%\thispagestyle{empty}
\titlepage
\end{frame}
}
\part{essay 1}
%%%%%%%%%%%%%%%%%%%% CHAPTER 1
\title %optional
{CHAP 1 title}
\begin{frame}[plain]
%\thispagestyle{empty}
\titlepage
\end{frame}
\section{Section 1 in chap 1}
\subsection{subsection 1.1 in chap 1}
\subsection{subsection 1.2 in chap 1}
\section{Section 2 in chap 1}
\subsection{subsection 2.1 in chap 1}
\subsection{subsection 2.2 in chap 1}
\part{essay 2}
%%%%%%%%%%%%%%%%%%%% CHAPTER 2
\title %optional
{CHAP 2 title}
\begin{frame}[plain]
%\thispagestyle{empty}
\titlepage
\end{frame}
\section{Section 1 in chap 2}
\subsection{subsection 1.1 in chap 2}
\subsection{subsection 1.2 in chap 2}
\section{Section 2 in chap 2}
\subsection{subsection 2.1 in chap 2}
\subsection{subsection 2.2 in chap 2}
\end{document}