잘못된 그림 참조 번호 지정 및 캡션이 없는 그림을 참조하는 방법

잘못된 그림 참조 번호 지정 및 캡션이 없는 그림을 참조하는 방법

왼쪽 그림 3개가 하위 그림이고 그림 1에 속하고, 또 다른 독립형 그림이 가장 오른쪽 그림이 되도록 4개의 그림을 합치려고 합니다.

두 가지 질문이 있습니다.

먼저, 본문에 있는 그림을 참조할 때 번호가 0부터 시작하는데 실제로는 1부터 시작해야 하는데 어떻게 1부터 시작하게 할까요?

둘째, 하위 그림 중 하나에 캡션을 할당하지 않으면 텍스트에서 해당 캡션을 참조할 수 없습니다.

다음은 내 코드와 내가하려는 작업의 이미지입니다.

\documentclass{article}
\usepackage{amsmath}
\usepackage[demo]{graphicx}
\usepackage{caption}
\captionsetup[subfigure]{labelsep=space,font=small}
\usepackage{subfigure}
\begin{document}


\begin{figure*}[t]
\begin{minipage}[t]{.75\textwidth}
\begin{minipage}[t]{.29\textwidth}
  \centering
  \includegraphics[width=1.0\linewidth]{wu8_wedges}
  \captionof{subfigure}{this is a caption}
  \label{fig:a}
\end{minipage}
\hfill
\begin{minipage}[t]{.29\textwidth}
  \includegraphics[width=1.0\linewidth]{wu8_wedges}
  \label{fig:b}
\end{minipage}
\hfill
\begin{minipage}[t]{.29\textwidth}
  \includegraphics[width=1.0\linewidth]{wu8_wedges}
  \label{fig:c}
\end{minipage}%
\caption{Fig 1 caption this is}
\end{minipage}
\begin{minipage}[t]{.23\textwidth}
  \centering
  \includegraphics[width=1.0\linewidth]{wu8_wedges}
  \caption{Fig 2 caption this is $\beta$}
  \label{fig:nextfig}
\end{minipage}
\end{figure*}


Why is it Figure \ref{fig:a}, and how to make references to Figures \ref{fig:b} and \ref{fig:c} work. Reference to Figure \ref{fig:nextfig} works?

\end{document}

여기에 이미지 설명을 입력하세요

답변1

위의 의견에 대한 보충으로:

\documentclass{article}
\usepackage{amsmath}
\usepackage[demo]{graphicx}
\usepackage{caption}
\usepackage{subfig}
\begin{document}

\begin{figure*}[t]
\begin{minipage}[t]{.75\linewidth}\centering
\subfloat[\label{fig:a}]{\includegraphics[width=0.3\linewidth]{wu8_wedges}}
\hfil
\subfloat[\label{fig:b}]{\includegraphics[width=0.3\linewidth]{wu8_wedges}}
\hfil
\subfloat[\label{fig:c}]{\includegraphics[width=0.3\linewidth]{wu8_wedges}}
    \caption{Figure 1 has three subfigures}
    \label{fig:1}
\end{minipage}%
\begin{minipage}[t]{.23\textwidth}\centering
  \includegraphics[width=0.9\linewidth]{wu8_wedges}
  \caption{Figure 2 has only one image}
  \label{fig:2}
\end{minipage}
\end{figure*}

See references for figures \ref{fig:a}, \ref{fig:b} and \ref{fig:c} which are part of Figure \ref{fig:1} and for Figure \ref{fig:2}. References works!

\end{document}

여기에 이미지 설명을 입력하세요

관련 정보