latex \ref{} 后面有一个空格,如何解决这个问题?

latex \ref{} 后面有一个空格,如何解决这个问题?
\documentclass[AMA,STIX1COL]{WileyNJD-v2}
\usepackage{graphicx}
\usepackage{subfig}
\usepackage{float}

\begin{document}

\section{Sample for first level head}\label{sec1}

Figure \ref{fig1}\subref{x} ipsum dolor sit amet, consectetuer adipiscing elit.

\begin{figure}[htbp]  
  \centering   
  
  \subfloat[] 
    {
        \begin{minipage}[t]{0.5\textwidth}
        \centering     
        \includegraphics[width=0.8\textwidth]{empty}\label{x} 
        \end{minipage}
    }%
    \subfloat[] 
    {
        \begin{minipage}[t]{0.5\textwidth}
        \centering 
        \includegraphics[width=0.8\textwidth]{empty}\label{x} 
        \end{minipage}
    }%
    
\caption{This is the sample figure caption.\label{fig1}}
\end{figure}

\end{document}

在此处输入图片描述

这是我在使用 weliy 模板时遇到的问题,引用子图时,母图图标和子图图标之间会有空格,如何解决这个问题?而且即使我在 \ref{} 和 \subref{} 之间加了空格,距离也不会增加。1(a) 能通过引用变成 1(a) 吗?

相关内容