我正在准备一份 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
密钥;产生与上述类似的结果。