I have
\documentclass{article}
\usepackage{pdfpages}
\begin{document}
Lorem. Read the answer for this from the document \ref{3rd_part}
....
\appendix
\includepdf[pages={-}]{3rd_part.pdf} \label{3rd_part} % NOT working, problem here!
\end{document}
This labelling does not work.
There is no need for
- no figure environment
- no table environment
- no caption,
since the document is only a WYSIWYG made document.
How can you label an included pdfdocument and refer to it?


figureortableenvironment? Should it have a caption? Shall there be an entry to somelist of anything? – Jun 22 '14 at 18:52appendix section, this is a quick solution, but not, if the page is to be shifted to some later place. Especially ifhyperrefis used, the link would go to some other place, i.e. right to the start of the appendix section – Jun 22 '14 at 18:56\appendixcommand start a chapter where the pdf is\includepdf. This would allow to actually name the Appendix, e.g. "Math demonstration" and also would allow to\refit later, since you are pointing to the beginning of the chapter – Mario S. E. Jun 22 '14 at 19:03refsteppedand then uselabelon it – Jun 22 '14 at 19:08