2014-09-06 38 views
1

我正準備在投影儀中使用gradientframe包裝進行演示。但它給了我一個錯誤。如何在我的投影儀演示中提及LaTeX命令的名稱?

如何在\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

上tex.stackexchange重複的問題:http://tex.stackexchange.com/q/9363 [環境中,所有的格式將被忽略(的 – 2014-09-06 01:57:43

+0

可能重複http://stackoverflow.com/questions/31650471/環境在那裏,所有的matting-is-ignored) – MattAllegro 2015-08-11 19:58:37

回答

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

+0

另外:http://stackoverflow.com/questions/31650471/environment-where-all-formatting-is_ignored/31950214#31950214 – MattAllegro 2015-08-11 20:04:35

相關問題