I am trying to include a a PDF file in my latex file, but it turns to background page and all new text and caption lines are written on the same page as my image from PDF. Here is my code:
\documentclass[12pt]{article}
\usepackage[fleqn]{amsmath}
\usepackage{txfonts}
\usepackage{graphicx}
\usepackage{hyperref}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{color}
\usepackage{gensymb}
\usepackage[ngerman, english]{babel}
\usepackage{blindtext}
\usepackage{notoccite}
\usepackage[final]{pdfpages}
\begin{figure}[ht!]
\begin{centering}
\includegraphics[width=68mm, height=55mm]{Fotos/figure1}
\caption{figure1}
\label{fig:figure1}
\end{centering}
\end{figure}
some text
\begin{figure}
\centering
\includepdf[pages=-]{fotos/photo.pdf}\label{fig:photo}
\caption{bla bla bla bla}
\end{figure}
\newpage
\bibliographystyle{ieeetr}
\bibliography{bib}
\end{document}
\begin{figure}[p]help? It should set the figure on its own page with the[p]option. – Steven B. Segletes Jan 13 '17 at 12:20\includegraphics{fotos/photo}? (\includepdfis not really intended for what you seem to be doing I think.) – Torbjørn T. Jan 13 '17 at 12:45\includegraphics{fotos/photo}(or\includegraphics[width=8cm]{fotos/photo}if you need to resize it), and see if the same thing happens. – Torbjørn T. Jan 13 '17 at 13:15