I'm writing my undergraduate thesis and right now when I refer to an equation in the text the number of the equation is shown without the parenthesis. While in the equation itself the number is shown with parenthesis, as is in the following print.
But I need them both to be shown equally (with or without parenthesis in both). I've tried to use the following command,
\renewcommand{\theequation}{(\arabic{chapter}.\arabic{equation})}
but the result was not as desired, because as shown in the following print now in the text the number have parenthesis, but the equation now have two parentheses.
So there is any alternative? I've seen about the package cleveref, but I have many reference to equations and would be good if it was possible to do something less exhaustive than change every reference.


\eqreffromamsmathmeet your needs? https://tex.stackexchange.com/q/107422/106162 – Dai Bowen Dec 14 '23 at 00:02\efonly for equations, it may be possible to redefine it, but if you have cross references to anything else, like a section or theorem, that would likely be too complicated. – barbara beeton Dec 14 '23 at 02:55\refto be a problem. If the equation references are consistently and reliably entered as\ref{eq:, a global replace of that string by\eqref{eq:should not only produce the result you want, but also avoid rather complicated command redefinitions as well as leaving you with a source that says exactly what you want. – barbara beeton Dec 14 '23 at 16:32