如何在我的beamer演示文稿中提及LaTeX命令的名称?

时间:2014-09-06 01:50:04

标签: pdflatex presentation beamer

我正在为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}

1 个答案:

答案 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}

此代码为您提供:

screenshot of the slide