Default setting of the Latex shows:
Figure 1.1. Caption....
I want to change the format to
Fig 1-1(without dot here) Caption
How can I change it similarily for tabel
A related question :How to change Figure 1: to bold Fig.1. in latex
the minimal example is :
\documentclass[12pt]{article}
\numberwithin{figure}{section}
\begin{document}
\begin{figure}[H]
\centering
\includegraphics[width=0.62\linewidth]{flow}
\caption{}
\label{}
\end{figure}
\begin{figure}[H]
\centering
\subfloat[]{\includegraphics[trim = 15mm 0mm 0mm 0mm, clip=true, width=8.5cm]{2.png}}
\subfloat[]{\includegraphics[trim = 15mm 0mm 0mm 0mm, clip=true, width=8.5cm]{1.png}}
\caption{}\label{}
\end{figure}
\end{document}
