algorithmicx 中没有参数的函数

algorithmicx 中没有参数的函数

我正在尝试编写一个算法,algorithmicx并且需要放置一个没有参数的函数。

我用

\Function {foo}{}

乳胶制品

函数FOO

但是我需要:

函数 FOO()

(调用函数也是如此(即使用时\Call{foo}{}

答案1

使用

\Function{foo}{\null}

\Call{foo}{\null}

这样,您就可以向这些宏传递一个非空、非打印的参数。以下是取自algorithmicx 文档

在此处输入图片描述

\documentclass{article}
\usepackage{algorithm}% http://ctan.org/pkg/algorithms
\usepackage{algpseudocode}% http://ctan.org/pkg/algorithmicx
\begin{document}
\begin{algorithm}
  \caption{Euclid’s algorithm}\label{euclid}
  \begin{algorithmic}[1]
    \Function{Euclid}{\null}\Comment{The g.c.d. of a and b}
      \State $r\gets a\bmod b$
      \While{$r\not=0$}\Comment{We have the answer if r is 0}
        \State $a\gets b$
        \State $b\gets r$
        \State $r\gets a\bmod b$
      \EndWhile\label{euclidendwhile}
      \State \textbf{return} $b$\Comment{The gcd is b}
            \State \Call{foo}{\null}
    \EndFunction
  \end{algorithmic}
\end{algorithm}
\end{document}

相关内容