latex 中 verbatim 内的 Ceiling 函数

latex 中 verbatim 内的 Ceiling 函数

我正在准备一份 latex 文档。我需要在函数主体中使用 ceiling 函数。如何在 verbatim 中使用 ceiling 函数?

\begin{verbatim}

Method a(b)

    .
    .
    .

  return a(ceiling of sqrt(b));

\end{verbatim}

有人能建议我如何逐字逐句地写下天花板吗?

答案1

fancyvrb为将常规数学与内容相结合提供了垫脚石verbatim。这是一个小例子:

在此处输入图片描述

\documentclass{article}
\usepackage{fancyvrb}% http://ctan.org/pkg/fancyvrb
\newcommand{\mesc}[1]{$#1$}
\begin{document}
\begin{Verbatim}[commandchars=\\\{\}]
Method \mesc{a(b)}
    .
    .
    .
return \mesc{a(\lceil\sqrt{b}\rceil)};
\end{Verbatim}
\end{document}

当然,你也可以尝试使用listings,它提供了mathescape密钥;产生与上述类似的结果。

相关内容