Eu tenho um pseudocódigo para um algoritmo, que parece bom (com alguns pequenos erros na compilação). Mas o maior problema é que a numeração das etapas não corresponde ao número de etapas do algoritmo. Eu tenho um MWE abaixo.
\documentclass[conference]{IEEEtran}
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{xcolor}
\usepackage{algorithm}
\usepackage{algorithmic}
\usepackage{tabulary}
\usepackage{algpseudocode}
\usepackage{booktabs}
\usepackage{cleveref}
\usepackage{enumitem}
\usepackage{subcaption}
\usepackage{amsmath,amssymb,amsthm,bbm,color,psfrag,amsfonts}
\algrenewcommand\algorithmicrequire{\textbf{Input:}}
\algrenewcommand\algorithmicensure{\textbf{Output:}}
\usepackage{url}
\newtheorem{theorem}{Theorem}
\newtheorem{lemma}{Lemma}
\newtheorem{asu}{Assumption}
\newtheorem{remark}{Remark}
\theoremstyle{definition}
\newtheorem{definition}{Definition}[section]
\crefname{lemma}{Lemma}{Lemmas}
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
\algrenewcommand\algorithmicrequire{\textbf{Input:}}
\algrenewcommand\algorithmicensure{\textbf{Output:}}
\begin{document}
\begin{algorithm}[H]
\caption{My Algorithm}\label{alg:greedy}
\begin{algorithmic}[1]
\renewcommand{\algorithmicrequire}{\textbf{Input:}}
\renewcommand{\algorithmicensure}{\textbf{Output:}}
\Require $M^0=4$.
\Ensure $V,\text{found}$
\WHILE{$P^l \neq \emptyset$}
\STATE{state}
\For{$i \in 1....|N|$}
\State{Compute }
\EndFor \label{nio}
\State Get $\theta$ \%. \label{tre}
\State $G \gets$ Find vals$) \label{find_vals}
\State $T,Y^{m+1} \gets $ \Call{Otherfunc}{$I$} \label{p}
\ENDWHILE
\end{algorithmic}
\end{algorithm}
\end{document}
Você notará que o número “2” aparece muitas vezes. Qualquer ajuda sobre como corrigir a numeração seria apreciada. Alguma ideia?
PS Você pode notar que este é o modelo IEEE, caso isso ajude.
Responder1
Você deve usar algorithmic
ou algpseudocode
, não ambos. Você está misturando a sintaxe dos dois pacotes e obviamente obtém erros.
Aqui está uma versão correta, onde pacotes e definições não são duplicados.
Eu apontaria isso
caption
(e entãosubcaption
) não pode ser usado comIEEEtran
. Se precisar de subfloats, carregue\usepackage[caption=false]{subfig}
e verifique a sintaxe deste pacote;textcomp
não é mais necessáriopsfrag
não é compatível compdflatex
\documentclass[conference]{IEEEtran}
\usepackage{cite}
\usepackage{amsmath,amssymb,amsthm}
\usepackage{graphicx}
%\usepackage{textcomp}% no longer necessary
\usepackage{xcolor}
\usepackage{algorithm}
%\usepackage{algorithmic}
\usepackage{algpseudocode}
\usepackage{booktabs}
\usepackage{enumitem}
%\usepackage{subcaption}% not with IEEEtran
\usepackage{url}
\usepackage{cleveref}
\algrenewcommand\algorithmicrequire{\textbf{Input:}}
\algrenewcommand\algorithmicensure{\textbf{Output:}}
\newtheorem{theorem}{Theorem}
\newtheorem{lemma}{Lemma}
\newtheorem{asu}{Assumption}
\newtheorem{remark}{Remark}
\theoremstyle{definition}
\newtheorem{definition}{Definition}[section]
\crefname{lemma}{Lemma}{Lemmas}
\begin{document}
\begin{algorithm}[H]
\caption{My Algorithm}\label{alg:greedy}
\begin{algorithmic}[1]
\Require $M^0=4$.
\Ensure $V,\text{found}$
\While{$P^l \neq \emptyset$}
\State state
\For{$i \in 1\dots|N|$}
\State Compute
\EndFor \label{nio}
\State Get $\theta$ \%. \label{tre}
\State $G \gets$ Find vals \label{find_vals}
\State $T,Y^{m+1} \gets $ \Call{Otherfunc}{$I$} \label{p}
\EndWhile
\end{algorithmic}
\end{algorithm}
\end{document}
Eu também recomendo carregar \usepackage{newtx}
(e remover amssymb
o que já está coberto pelo primeiro). Aqui está o resultado que você obtém, com matemática em fontes semelhantes ao Times. Aqui estão as primeiras linhas para ver como o pacote é chamado (depois amsthm
).
\documentclass[conference]{IEEEtran}
\usepackage{cite}
\usepackage{amsmath,amsthm}
\usepackage{newtx}