My need is quite simple. For example, I have a counter cnt1, now I want to create a new counter cnt2 which actually is the same one as cbt1 except for their names. That is cnt2 is a copy of cnt1 or just a rename of cnt1.
I have tried the following:
\newcounter{cnt2}
\setcounter{cnt2}{\value{cnt1}}
But it didn’t work as what I expect. I mean it is not the completely copy of cnt1. How can I make a copy of counter in LaTeX?

\number\value{cnt1}instead of\arabic{cnt1}? – Mico May 31 '20 at 04:09\arabicinstead, so there is no advantage in this code. Here one can find a discussion on this. – May 31 '20 at 04:17\expandafter\expandafter\expandafter\let\expandafter\csname c@cnt2\expandafter\endcsname\csname c@cnt1\endcsname– John Kormylo May 31 '20 at 16:20