
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에 대한 링크입니다.파일. 이 부분은 템플릿에서 직접 가져오며 변경하지 않았습니다.
각 섹션과 하위 섹션에 로마 스타일 번호 매기기를 사용하고 싶습니다. 감사합니다