If I make bibliography, then I can make unique name for any position, for example by \bibitem{tutor}, then refer to it in the text with \cite{tutor}.
Now, let's say that I am writing some bigger text, usually using \begin{align} and \end{align} for adding mathematical formulas, so I can format them nicely and have them being automatically enumerated.
While I keep adding and changing things, numeration keeps changing, so something that was previously "Theorem (5.24)" becomes "Theorem (5.36)", etc. It's really problematic, as I have to keep changing it manually, which is inane and adds much of unnecessary work.
Can I make this more flexible, so later I don't have to go through every single reference that I wrote manually and change it to something else?
Maybe there's a way to possibly "label" certain align lines and refer to them later, using this unique label in similar way to how I can use \bibitem and \cite?
\labeland\refmacros; the former serves to set a "label" (usually associated with a counter such asequationortheorem), the latter serves to generate the cross-reference to an object that was labeled elsewhere in the document. Did you see the posting Cross-reference packages: which to use, which conflict? The answers discuss both the basic\label-\refmechanism as well as various packages which make sophisticated cross-referencing quite straightforward and easy to use. – Mico Feb 18 '18 at 23:51\label{eq:name_here}and\ref{name_here}works for me :-)https://en.wikibooks.org/wiki/LaTeX/Labels_and_Cross-referencing – Kusavil Feb 19 '18 at 00:07
align. the user guide foramsmathmay be more reliable than the latex wikibook, which does not always document "best practices". specifically,\eqref{...}is recommended over\ref{...}for references to display math. – barbara beeton Feb 19 '18 at 02:40\label-\refmechanism is also available for theorems. see theamsthmuser guide for guidance on using that package. (other theorem packages provide equivalent facilities.) – barbara beeton Feb 19 '18 at 02:50