captions
How to make a hyperlink navigate to the top of the figure in LaTeX when using hyperref?
Add this in your preamble \usepackage{hyperref} \usepackage[all]{hypcap} %for going to the top of an image when a figure reference is clicked Make sure that the \usepackage[all]{hypcap} is written after the hyperref package is imported.
Removing prefix from figure captions in LaTeX
First use the caption package and then use the command \caption* in this way \usepackage{caption} … \caption*{some text} instead of \caption{some text} Logic is the same in avoiding numbering of sections and subsections and many other objects \subsection*{Name of unnumbered subsection}