I would like to have my Table counting like
Table P1.1
Table P1.2
Table P1.3
I tried with \renewcommand{\thetable}{P1.???}, and I do not know what to put on the question marks.
EDIT I wrote this code
\setcounter{figure}{0}
\begin{figure}[htbp!]
\includegraphics[scale=0.5]{Figures/P1.1.png}
\caption{\label{fig:P1.1}When reading from a scale, make sure that you know what each division on the scale represents.}
\end{figure}
and I would like that my figure/table have 
Figure P1.2.png instead of P1.16.2 after using this
\let\oldthetable\thetable
\renewcommand{\thetable}{P1.\oldthetable}
\let\oldthefigure\thefigure
\renewcommand{\thefigure}{P1.\oldthefigure}
P1.2, what doesP1(or possiblePand1, individually) and2represent? – Werner Mar 12 '21 at 23:39for ,,part 1, perhaps? – chsk Mar 13 '21 at 09:40