를 사용하여 알고리즘을 작성하려고 하는데 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}