删除算法中的索引 0

删除算法中的索引 0

我正在使用 overleaf 和 TexLive 2022 版来创建算法。为了删除所有索引 0,我将可选参数从 调整\begin{algorithmic}[0]\begin{algorithmic}

以下是背面序言中的完整代码:

\documentclass[journal]{IEEEtran}
\usepackage{mathtools}   
\usepackage{newtxtext,newtxmath} 
\usepackage{lipsum} 
\ifCLASSINFOpdf
\else
\fi

\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{cite}

% \includegraphics 사용을 위해서 필수적으로 import 하는 패키지
\usepackage{graphicx}
% subfigure를 사용하기 위해서 필요한 패키지
\usepackage{subfig}

% 수식 사용을 위해 필수적으로 import 하는 패키지
\usepackage[cmex10]{amsmath}

% 텍스트 색을 바꾸려면 필요한 패키지
\usepackage{color}


\usepackage{algorithm}
\usepackage{algorithmic}
%\usepackage{algpseudocode}

\usepackage{caption}
\usepackage{mathtools}

\usepackage{relsize}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage{amsmath}
\let\labelindent\relax
\usepackage{enumitem}


\theoremstyle{definition}

\newtheorem{theorem}{Theorem}
\newtheorem{lemma}{Lemma}
\newtheorem{proposition}{Proposition}
\newtheorem{corollary}{Corollary}
\newtheorem{property}{Property}
\newtheorem{dominance property}{Dominance Property}
\newtheorem{example}{Example}
\newtheorem{condition}{Condition}
\newtheorem{remark}{Remark}

\newtheorem{schedulingrule}{Scheduling Rule}
\newtheorem{MIP}{MIP Model}
\newtheorem{assumption}{Assumption}

\newtheorem{definition}{Definition}


\DeclareUnicodeCharacter{2061}{}

\renewcommand{\qedsymbol}{$\blacksquare$}


\usepackage{tabularx}
\usepackage{booktabs}
\usepackage[commentColor=black, indLines=false]{algpseudocodex}

\hyphenation{op-tical net-works semi-conduc-tor}

\let\oldhat\hat
\renewcommand{\vec}[1]{\mathbf{#1}}
\renewcommand{\hat}[1]{\oldhat{\mathbf{#1}}}

\newcommand{\qvec}[1]{\textbf{\textit{#1}}}

\begin{document}

\floatplacement{algorithm}{tbp}
\makeatletter
\newcommand{\algorithmname}{\ALG@name}
\renewcommand{\floatc@ruled}[2]{{\@fs@cfont #1} #2\par}
\makeatother
\tikzset{algpxIndentLine/.style={draw=black}}
\algrenewcommand{\alglinenumber}[1]{\bfseries\footnotesize #1}
\algrenewcommand{\textproc}{\bfseries}

\begin{algorithm}
\caption{Sequence}
\begin{algorithmic}
\Statex \textbf{Step I}
\State Do $U_{LL}$
\If{$n$ is odd number}
\State Do $U_n$
\Else
\State Do $L_n$
\EndIf
\Statex \textbf{Step II}
\For{$i=1,\ldots,n$}
\If{$i\bmod{2}==1$}
\State Do $L_i$
\Else
\State Do $U_i$
\EndIf
\EndFor
\Statex \textbf{Step III}
\For{$i=1,\ldots,n-1$}
\If{$i\bmod{2}==1$}
\State Do $U_i$
\Else
\State Do $L_i$
\EndIf
\EndFor
\State Do $L_{LL}$
\end{algorithmic}
\end{algorithm}

\end{document}

以下是结果的截图。

在此处输入图片描述

请问应该在代码中更正什么才能删除所有索引 0(黄色突出显示)?

答案1

您的代码中存在许多包冲突,尚未解决!

删除\usepackage{newtxtext,newtxmath}\usepackage[cmex10]{amsmath}\usepackage{algorithmic}

你的preamble太乱了!如果要投稿给IEEE,请不要加载全局字体包,比如newtxtextnewtxmath

相关内容