Hallo,
ich bin ziemlicher Anfänger in Latex. Ich hab ein Problem bei dem ihr euch alle denken würdet oh man... ^^ aber leider hab ich nichts gefunden wie ich das Problem lösen könnte.
Zum Problem:
Ich wollte zwei bilder in mein Protokoll mit rein nehmen. Aber das zweite Bild wird in der PDF nicht angezeigt, besser noch, mein protokoll wird mit diesem zweiten bild gar nicht erst kompiliert. Wenn ich das Bild aber auskommentiere, dann macht er alles wie er soll...
Also das ist meine Hauptseite:
Code:
\documentclass[a4paper]{scrreprt}

\usepackage[top=1in, bottom=1in, left=1in, right=1in]{geometry}
\usepackage[pdftex]{graphicx}
\usepackage[absolute]{textpos}
\usepackage[onehalfspacing]{setspace}
\usepackage{anysize}
\usepackage{float}
\usepackage{setspace}
\usepackage{fancyhdr}
\pagestyle{empty}
\pagestyle{fancy}

%Kopf- und Fußzeile anfang
\lhead{}
\chead{}
\rhead{}
\renewcommand{\headrulewidth}{0.0pt}

\lfoot{\leftmark}
\cfoot{ }
\rfoot{\thepage}
%Kopf- und Fußzeile ende

\setcounter{chapter}{3} % Kapitelzahl eingeben
\setcounter{page}{15} % Seitenzahl eingeben

\begin{document}


%\include{experiment1}

%\include{experiment2}

\include{experiment3}

%\include{experiment4}

%\include{experiment5}

%\include{experiment6}

\include{summary}

\include{references}

\end{document}
Und das ist mein fehlerhafter code:
Code:
\chapter{Bridge Circuit}
\thispagestyle{fancy}

\section{Measurement Results and Data Evaluation}

It is to determine the resistance...

%Hier klappt es
	\begin{figure}[h]
	\centering
	\includegraphics[scale=0.5]{wheatstone_bridge.jpg}
	\caption{Circuit diagram of the used Wheatstone Bridge with the variable resistance decade box, the searched resistance $R_x$, the zero indicator and the Multi-Turn potentiometer.}
	\end{figure}
	
This special Wheatstone Bridge...

%Hier klappt es nicht
	\begin{figure}[h]
	\centering
	\includegraphics[scale=0.5]{bridge.jpg}
	\caption{Standard Wheatstone Bridge with the resistances $R_1$, $R_2$, $R_3$ and $R_4$. [1]}
	\end{figure}
Ich hoffe ihr könnt mir weiter helfen.
Gruß Markus