如何在章节和小节中添加罗马编号?

如何在章节和小节中添加罗马编号?

我正在使用 IEEE 模板撰写论文,在章节和小节前面添加数字时遇到了问题。我尝试使用 renewcommand,但它不起作用。这是我当前的代码

\documentclass{IEEEcsmag}

\usepackage[colorlinks,urlcolor=blue,linkcolor=blue,citecolor=blue]{hyperref}

\usepackage{upmath}


\jvol{XX}
\jnum{XX}
\paper{8}
\jmonth{May/June}
\jname{IT Professional}
\pubyear{2019}
\newtheorem{theorem}{Theorem}
\newtheorem{lemma}{Lemma}

\setcounter{secnumdepth}{0}
% Add Reference style
\usepackage[
backend=bibtex,
style=ieee,
sorting=ynt
]{biblatex}

% Add Reference source 
\addbibresource{ref.bib}

\renewcommand\thesection{\arabic{section}}
\renewcommand\thesubsection{\thesection.\arabic{subsection}}

\begin{document}

这是 upmath.sty 和 IEEECSmag.cls 的链接文件。这部分我是直接从模板上取的,没有改动过。

我想在每个章节和小节中使用罗马数字编号。谢谢

相关内容