我正在为gradientframe
包准备一个beamer的演示文稿。但它给了我一个错误。
如何在\frame
?
\begin{frame}
\frametitle{Introduction}
The gradientframe package provides a command, \gradientframe for simple and discreet
rectangular grayscale gradient frames around objects, such as figures or tables, to set
them apart from the surrounding text.
\end{frame}
答案 0 :(得分:0)
与linked question的几个答案一样(感谢@Bas Swinckels),建议在输出中插入反斜杠\
的方法是在源代码中使用\textbackslash
。
然后,您可以使用(或不使用)\texttt{}
(而不是逐字或其他)来标记命令名称。
最后,如果您必须在幻灯片中多次提及这些命令名称,您可能希望将上述两个命令放在newcommand
中:
\documentclass{beamer}
\newcommand{\mycomm}[1]{\texttt{\textbackslash #1}}
%\newcommand{\commgf}{\texttt{\textbackslash gradientframe}}
\begin{document}
\begin{frame}
\frametitle{Introduction}
... a command, \textbackslash gradientframe for simple ...
or:
... a command, \texttt{\textbackslash gradientframe} for simple ...
or, better:
... a command, \mycomm{gradientframe} for simple ...
%... a command, \commgf{} for simple ...
\end{frame}
\end{document}
此代码为您提供: