を使用してアルゴリズムを記述しようとしています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}