使用以下代码,函数名称 foo 被打印为\textsc{foo}
。
\usepackage{algorithmic}
\begin{document}
\begin{frame}
\begin{algorithmic}[1]
\Function{foo}{$a$}
\EndFunction
\end{algorithmic}
\end{frame}
我怎样才能将其更改\texttt{foo}
为所有\Function
命令\Call
?
答案1
所需包是algpseudocode
,不是algorithmic
。
\documentclass{article}
\usepackage{algpseudocode}
\algrenewcommand\textproc{\texttt}
\begin{document}
\begin{algorithmic}[1]
\Function{foo}{$a$}
\EndFunction
\end{algorithmic}
\end{document}