i've got an issue. I'm writing a LaTeX document, i would like to make a page of my final document as a pdf file (that is a text). I searched on this site but no one of the existing topic helped me.
I tried to use \input, \include, and \includegrapics{file.pdf} but it doesn't work.
If i use the latest command (\includegraphics) it looks like:

So the image respect my margins and my page style.
How can I solve this??
Thanks
Update with the code:
\documentclass[11pt]{article}
\usepackage{graphicx}
\usepackage{fancyhdr}
\usepackage{vmargin}
\setmarginsrb{2 cm}{2.5 cm}{2 cm}{2.5 cm}{1 cm}{1.5 cm}{1 cm}{1.5 cm}
\pagestyle{fancy}
\fancyhf{}
\rhead{}
\lhead{}
\cfoot{\thepage}
\begin{document}
\input{Lab3/Lab3}
\newpage
\includegraphics{Lab4/traccia4.pdf}
\newpage
\input{Lab4/Lab4}
\end{document}
I'm working with \input.
pdfpagescould solve your problem. See more overpdfpageson CTAN : https://ctan.org/pkg/pdfpages – Piroooh Nov 08 '18 at 12:30\inputand\includebascally insert atexfile into another one so this is not what you need. You should usepdfpagesfor your needs – BambOo Nov 08 '18 at 13:14