pdflatex, \includegraphics, and multi-page PDF files

graphicx (the extended version of graphics) knows the page option:

\includegraphics[page=3]{foo}

should work, or

\includegraphics[page=..,trim=...,clip]{foo}

for only parts of the page. If you want to include more than one page then use Package pdfpages and the command \includepdf


Here another possibility using graphics package. In this way you can include each one of the pages than you want from your pdf file ([page= number of the page in the pdf file that you want to include). In the example I want to include a big table that I do in pdf having 2 pages and including that in the TOC like table.

\begingroup

\begin{sidewaysfigure}

    \begin{center}
    %\fbox{
    \includegraphics[page=1, width=\linewidth]{Foo}%}
    \end{center}
\end{sidewaysfigure}


\begin{sidewaysfigure}

    \begin{center}
    %\fbox{
    \includegraphics[page=2, width=\linewidth]{Foo}%}
    \captionof{table}{Caption}
    \label{Zones_intervention_tab}
    \end{center}
\end{sidewaysfigure}

\endgroup