I have a large document with several images, and I'd like to duplicate some of these images in individual pdf documents on their own, while preserving the way they display, figure numbering, and reference numbering of citations, tables, etc. So for example, if the figure number is 1.3 in the main document, it would still be 1.3 in the other document, despite the fact that figures 1.1 and 1.2 don't exist in the other document. Likewise for any reference in the caption, i.e.:
\caption{Something referencing Table \ref{tab:example} and citing \cite{examplecite}.}
would display as "Figure 1.3: Something referencing Table 1.2 and citing [15]." in both documents, despite the absence of Table 1.1, or citations 1-14 in the latter document.
A very manual way to achieve this would be to duplicate my preamble in a new tex document, copy over only the relevant figure, then replace instances of \cite{Example}, etc, with its actual number so as to preserve the numbering, then use this to generate the pdf that I'm after. This would work, but it's a terrible solution.
I'd like to know how to best go about this. I'm just after ideas of things to try, not a fully coded working example, as I don't know how to make a MWE for this.

\setcounter{figure}{<ORIGINAL NUM -1>}\begin{figure}....\end{figure}– touhami Feb 15 '16 at 07:45\includegraphics[page=x,trim=l b r t,clip]{file}looked hopeful, but this wouldn't display the image, just the text, so I'm still looking for a solution. – Ulysses Feb 15 '16 at 10:48