I am facing some issues trying to insert images on my code. The problem is: none of them are being displayed. However, I am not getting any errors and the file compiles normally. Here is the library packages I am using followed by an image insertion code example (I am using this same code for all my images):
Note 1: Ignore the portuguese comments in my code, I am from Brazil

Note 2: The packages with "%" are packages that I've already tried to use to insert the images, and none of them worked.
Code: Select all
\documentclass[11pt]{book}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Inclusão de pacotes e bibliotecas
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage[portuguese]{babel} %Português Brasil
\usepackage[latin1]{inputenc} %uso de acento direto do teclado
\usepackage[dvips]{graphicx,color} %incluir figuras
\usepackage{amsthm,amsfonts} %fontes matemáticas
\usepackage{adjustbox} %Alinhar figuras
%\usepackage[pdftex]{graphicx} %incluir figuras PDF
%\usepackage{epsfig} %inserir figuras eps
%\graphicspath{{Figuras/}} %Buscar imagens nessa pasta
\definecolor{cinza}{RGB}{238,238,238} %define um padrão de cor
\definecolor{cinza1}{RGB}{150,150,150} %define um padrão de cor
\usepackage[Bjornstrup]{fncychap} %estilo para titulo do capitulo
\usepackage{verbatim} %comentários de várias linhas
%\usepackage[tc]{titlepic} %estilo para figura na capa
%\titlepic{\includegraphics[width=\textwidth]{fig/capa.eps}}
\usepackage{fancyhdr} %rodape e cabeçalho
\pagestyle{fancy} %estilo de cabecalho
\fancyhf{} % apagar as configuracoes atuais
\fancyhead[LE,RO]{\footnotesize\bfseries\thepage}
\fancyhead[LO]{\scriptsize\bfseries\rightmark}
\fancyhead[RE]{\scriptsize\bfseries\leftmark}
\renewcommand{\headrulewidth}{0.2pt}
\renewcommand{\footrulewidth}{0pt}
\addtolength{\headheight}{0.3pt} % fazer espaço para o risco
\fancypagestyle{plain}{%
\fancyhead{} % Tirar cabeçalhos de página vazias
\renewcommand{\headrulewidth}{0pt} % e o risco
}
\usepackage{listings} %inserção de códigos-fontes de programação
% opções do pacote listings
\lstset{numbers=left,
language=C,
basicstyle=\ttfamily\footnotesize,
keywordstyle=\color{red}\bfseries,
stringstyle=\color{blue},
commentstyle=\color{cinza1},
extendedchars=true,
showspaces=false,
showstringspaces=false,
numberstyle=\tiny,
breaklines=true,
backgroundcolor=\color{cinza},
breakautoindent=true,
captionpos=b,
xleftmargin=0pt,
}
Code: Select all
\begin{figure}[!htb]
\centering %centralizar a figura
\includegraphics[height=5cm]{Figuras/Imagem001.eps}
\end{figure}