自定义 LaTeX 子表的引用样式

自定义 LaTeX 子表的引用样式

我创建并引用了一些子表。下面显示了一个最小示例。

\documentclass{IEEEtran}

\usepackage{subcaption}

\begin{document}
    \begin{table}
        \caption{Table}
        \begin{subtable}[t]{.45\linewidth}
            \caption{Sub1}
            Something
        \end{subtable}

        \begin{subtable}[t]{.45\linewidth}
            \caption{Sub2}
            \label{tab:sub2}
            Others
        \end{subtable}
    \end{table}

    Table~\ref{tab:sub2}
\end{document}

Table I(b)我得到的不是 ,而是Table Ib。如何自定义引用样式以添加括住子表数量的括号?

相关内容