I need to insert some pdf documents to my latex file. For that I use the package
\usepackage{pdfpages}
. But the problem is that after adding this command I have this type of error message as
Code: Select all
!LaTex Error: Missing \begin{document}
Code: Select all
\documentclass[12pt,letterpaper]{article}
\usepackage{pdfpages}
\begin{document}
\includepdf{testpdf}
\end{document}