Reference 乳胶:参考小节,查找IV.B而不是IV.II

Reference 乳胶:参考小节,查找IV.B而不是IV.II,reference,label,latex,Reference,Label,Latex,使用\ref引用小节时出现问题。章节和小节的标题分别以拉丁数字(I、II、III…)和英文字母(A、B、C…)开头,但当我提到小节时,我只得到类似“IV.II”或“IV.III”的内容。我希望得到“IV.B”或“IV.C”的表格 我已经在网上查过了,但是没有找到关于这个问题的任何信息。有人能帮忙吗?谢谢 我使用的软件包有: \documentclass[10pt,conference,letterpaper,twocolumn,twoside]{IEEEtran} \renewcommand{\

使用\ref引用小节时出现问题。章节和小节的标题分别以拉丁数字(I、II、III…)和英文字母(A、B、C…)开头,但当我提到小节时,我只得到类似“IV.II”或“IV.III”的内容。我希望得到“IV.B”或“IV.C”的表格

我已经在网上查过了,但是没有找到关于这个问题的任何信息。有人能帮忙吗?谢谢

我使用的软件包有:

\documentclass[10pt,conference,letterpaper,twocolumn,twoside]{IEEEtran}
\renewcommand{\thesection}{\Roman{section}} 
\renewcommand{\thesubsection}{\thesection.\Roman{subsection}}
\usepackage{nopageno}
\usepackage{amsmath}    % Needed for typesetting math
\usepackage{graphicx}   % Needed for including graphics
\usepackage{geometry}   % Used for setting the page layout
\usepackage{verbatim}   % Useful for program listings. Defines the
\usepackage{color}      % Load it if color is used in text. There also
\usepackage{amsthm}         %  amsthm package enabled to type theorems and lemmas
\newtheorem{theorem}{Theorem}
\usepackage{amsmath}    %hua xie
\usepackage{amssymb}
\usepackage{listings}       %hollow
\usepackage[lined,ruled,vlined]{algorithm2e}
\usepackage{booktabs}   %finish the 'NOTATION table'
\usepackage{subfigure}  %for figures arrangement
\geometry{left=0.625in,right=0.625in,top=0.75in,bottom=1in}
\usepackage[utf8]{inputenc}
\newcommand{\Tau}{\mathrm{T}}
\usepackage[normalem]{ulem}
\newcommand{\eg}{e.$\,$g., }
\usepackage{float}

您对子节的递归定义不正确。相反,你需要

\renewcommand{\thesubsection}{\thesection.\Alph{subsection}}
以获得
III.a
样式的分段编号