Beamer Frame 在 Standalone 类中运行良好,但在编译主程序时缺少标头

Beamer Frame 在 Standalone 类中运行良好,但在编译主程序时缺少标头

我可以完美地编译子文件,但主文件删除了框架的标题。以下是代码standalone

    \documentclass[beamer]{standalone}

    \begin{document}

    \begin{standaloneframe}\frametitle{Last week we looked at:}
    \uncover<+-|alert@+>{
    }
    \end{standaloneframe}

    \end{document}

我也尝试过不使用这个\frametitle命令,但什么也没改变。下面,“Overview”文件就是上面的子文件。

    \documentclass{beamer}
    \usepackage{standalone}
    \begin{document}
    \input{Overview}
    \end{document}

事实上情况比我想象的还要糟糕。使用上面的代码,现在根本不编译任何页面。当我输入以下代码时:

    \documentclass{beamer}
    \usepackage{standalone}
    \begin{document}
    \begin{frame}
    \input{Overview}
    \end{frame}
    \end{document}

它可以工作,但这意味着我需要standalone为每张幻灯片使用不同的文件。

相关内容