Latex 新命令与模式*

Latex 新命令与模式*

我想在 Beamer 的命令中使用字符串常量。以下是我所做的

\documentclass{beamer}

\begin{document}

\mode*

\newcommand{\test}{asdf}

\begin{frame}
\test
\end{frame}

\end{document}

如果\testframe它的外面,或者如果我删除,它就可以工作mode*。我想要使用的只是定义一个字符串,以便在其他命令中重复使用并作为输入(它将保存一条路径)。

答案1

\mode*以下是Beamer 文档中的描述:

\mode*

此模式的效果是忽略演示模式下框架外的所有文本。在文章模式下,此模式无效。

在适当的位置定义\test,即之前\begin{document}

\documentclass{beamer}

\newcommand{\test}{asdf}

\begin{document}

\mode*

\begin{frame}
\test
\end{frame}

\end{document}

相关内容