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}

関連情報