3
\section{Software Architecture}
Hello
\begin{figure}[h]
\includegraphics{SystemOverview.pdf}
\end{figure}
Hallo

results in:

enter image description here

I'm using packages

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{amsmath}
\usepackage{ae}
\usepackage{icomma}
\usepackage{units}
\usepackage{color}
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage{subfigure}
\usepackage{bbm}
\usepackage{caption}
\usepackage[square, numbers, sort]{natbib}
\usepackage{multirow}
\usepackage{array}
\usepackage{geometry}
\usepackage{fancyhdr}
\usepackage{fncychap}
\usepackage[hyphens]{url}
\usepackage[breaklinks,pdfpagelabels=false]{hyperref}
\usepackage{lettrine}
\usepackage{eso-pic}

and document class

\documentclass[11pt,a4paper]{report}

How can i fix it?

2 Answers2

4

Maybe you are compiling in "draft" instead of "normal" mode. You can switch between these options in the dropdown menu of the compile button.

Draft mode will enable you to compile faster, but it won't load images.

lorenz
  • 41
2

The problem is that \includegraphics seems to look from the root instead of relative to the code, so if you specify \includegraphics{folderwithfigures\systemoverview} it should work. Also pdf and svg does not seem to work, but png does.