Estoy intentando escribir un algoritmo usando algorithmicx
y necesito poner una función sin parámetros.
yo suelo
\Function {foo}{}
El látex produce:
función FOO
Sin embargo necesito:
función FOO()
(Lo mismo ocurre con llamar a una función (es decir, cuando se usa \Call{foo}{}
)
Respuesta1
Usar
\Function{foo}{\null}
y
\Call{foo}{\null}
De esta manera, estás pasando a estas macros un argumento que no está vacío ni se imprime. Aquí hay un ejemplo simulado tomado delalgorithmicx
documentación:
\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}