我建立並引用一些子表。下面顯示了一個最小範例。
\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
。如何自訂引用樣式以新增包含子表數量的括號?