我正在嘗試使用編寫演算法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}