I would like to include a pdf page into my document.
I tried the package pdfpages but I've got a lot of error because of the images I use, I think.
I've read that it is possible to use the command \includegraphics, but when I compile the document (->DVI) I get the following error message
Here it is a minimal example:Error: /undefined in obj
Operand stack:
1 0
Execution stack:
%interp_exit .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- --nostringval-- --nostringval-- false 1 %stopped_push 1893 1 3 %oparray_pop 1892 1 3 %oparray_pop 1876 1 3 %oparray_pop 1755 1 3 %oparray_pop --nostringval-- %errorexec_pop .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval--
Dictionary stack:
--dict:1155/1684(ro)(G)-- --dict:0/20(G)-- --dict:81/200(L)-- --dict:175/300(L)-- --dict:42/200(L)--
Current allocation mode is local
Last OS error: No such file or directory
MiKTeX GPL Ghostscript 8.60: Unrecoverable error, exit code 1
Code: Select all
\documentclass[
paper=a5,
fontsize=10pt,
DIV=calc,
headsepline,
footsepline,
titlepage,
headings=normal,
version=last,
twoside=true, % prova eliminazione geometry
headinclude=true,
footinclude=true,
mpinclude=true,
BCOR=1.8cm
]{scrbook}
%%%%%%%%%%%%%%%%%%%%%%%%%%
% PACCHETTI
%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage[arabic,italian]{babel}
\usepackage{psbao} % per i diagrammi di Bao
\usepackage{array}
\usepackage{url}
\usepackage{float}
\usepackage{multicol}
\usepackage{graphicx}
\usepackage{wrapfig}
\usepackage{scrpage2} %\invece di usepackage{fancyhdr}?
\usepackage{times}
\usepackage{lettrine}
\usepackage{indentfirst}
\usepackage{savefnmark}
\usepackage{makeidx,titletoc}
\usepackage{rotating}
\usepackage{eso-pic}
\usepackage{cmap}
\usepackage[T1]{fontenc}
\usepackage{inputenc}
\usepackage[tiling]{pst-fill}
\usepackage{pst-text,pst-grad,pst-plot}
\usepackage{natbib}
\usepackage{supertabular}
\usepackage{xspace}
\usepackage{ifthen}
\usepackage[thref]{ntheorem}
%\usepackage[backref]{hyperref} % Serve per i riferimenti alla bibliografia
\usepackage{marginnote}
\usepackage{mparhack}
\usepackage{showkeys}
\begin{document}
\includegraphics{ifa.pdf}
\end{document}
Thank you in advance for any help.
Nino