更改算法中函数名称的字体

更改算法中函数名称的字体

使用以下代码,函数名称 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}

在此处输入图片描述

相关内容