I have this code:
Code: Select all
\begin{figure}[!h]
\begin{center}
\subfigure[gwiazda]{
\includegraphics[width=0.4\textwidth]{img/silnik-gwiazda.eps}
\label{fig:silnik_sub_gwiazda}
}
\subfigure[trójkąt]{
\includegraphics[width=0.4\textwidth]{img/silnik-trojkat.eps}
\label{fig:silnik_sub_trojkat}
}
\end{center}
\caption{Schemat elektryczny trójfazowego silnika bezszczotkowego \subref{fig:silnik_sub_gwiazda} -- gwiazda; \subref{fig:silnik_sub_trojkat} -- trójkąt (delta)}
\label{fig:silnik}
\end{figure}
(rysunek \ref{fig:silnik}) | (rysunek \ref{fig:silnik_sub_gwiazda})
I expected another numeration. How I can get this:(rysunek 1) | (rysunek 2.1(a))
I know I can use combination of(rysunek 1) | (rysunek 1(a))
\ref
and \subref
, but this is wrong way.My class file is attached.