I've found some great help with a few questions already on this forum, and I hope you can help me again this time. I've searched the web for a solution, but I can't find anything specific for my issue (perhaps I'm just searching the wrong keywords).
Here's my problem: in my thesis, I'd like to refer to a picture that's too large to place in the text body, and I can't make it smaller because it's already kind of below its minimal size, so I placed it in an appendix. It's only the first appendix in my thesis so far, but more might follow. Now, when I want to refer to that picture, I mention this in my code:
Code: Select all
\documentclass{article}
\usepackage{hyperref}
\begin{document}
TEXT
Picture~\ref{fig:abc} in appendix~\ref{app:def} shows...
MORE TEXT
\section{Appendix}
\subsection*{Figure~\ref{fig:abc}}
\phantomsection
\begin{figure}[htbp]
\centering
\includegraphics[scale=0.085]{abc.pdf}
\caption{My caption}
\label{fig:abc}
\end{figure}
\label{app:def}
\end{document}
I already know that it's writing "appendix 8" because I've placed my \label in the appendix section, which is the 8th section in my thesis.
My question is: is it possible to tell latex to use a separate numbering for my appendix so that it would show "Figure 7 in appendix 1"?
Thanks in advance!