\暂停不起作用

\暂停不起作用

以下是我的 beamer 代码。这是我第一次使用暂停功能,它在我的文档中不起作用。

\documentclass[12pt]{beamer}

\title {Coding theory for juniors}

\author{\textbf{Kaustubh Limaye}}

\institute{\large {\textbf{Roots Camp, RAM}}}

\date{\today}

\hypersetup{pdfpagemode=FullScreen} 

\usepackage{mathtools}

\usepackage{graphicx}

\usepackage{color}

\usepackage{beamerthemeshadow}

\usepackage{multicol}

\usepackage{amsthm}

\usepackage{chemfig}

\usepackage{tikz}

\usetikzlibrary{graphs}

\usepackage{amsmath,amssymb}

\usepackage{esvect}

\usepackage[utf8]{inputenc}

\usepackage{blindtext}

\usetheme{Pittsburgh}

\usepackage[accumulated]{beamerseminar}

\newcommand{\N}{\mathbb{N}}

\newcommand{\Z}{\mathbb{Z}}

\newcommand{\Q}{\mathbb{Q}}

\newcommand{\R}{\mathbb{R}}

\newcommand{\C}{\mathbb{C}}

%Document Environment 

\useinnertheme[shadow=true]{rounded}

\usepackage{etoolbox}

\usepackage{environ}

\usepackage{lipsum}


\begin{document}

\maketitle

    \begin{frame}[allowframebreaks]

    \frametitle{A Childhood Game}
    
    As far a I remember, when I was your age, we used to play one game. That game involves two cans and a string. 
    
    \begin{figure}
        \centering
        \includegraphics[scale=0.5]{communication.jpg}
    \end{figure}    
    
    \begin{block}{Question}
        Do you think that the communication is feasible?
    \end{block}
    
    \pause
    
    Whatever bob says, will not be completely understandable to eve due to $\textbf{Noise}$. Still Eve can somehow manage to figure out what bob said. 
    
    \pause
    
    So, whatever Bob says goes through a noisy channel and Eve receives a message with noise (error) and she corrects it.  \pause
    Suppose. 
    \end{frame} 
\end{document}

请帮我解决这个问题。第一次暂停后,文档没有显示任何写入的内容。

谢谢你!

答案1

我无法访问您的图。但是,这里的问题在于框架选项allowframebreaks。如果您删除它,它就可以完美运行。

该选项allowframebreaks只应用于生成超过一帧输出的命令,即参考书目。

相关内容