I have a problem with my latex code. The figure shows up above the paragraph, but I wrote it the other way around in my source code. I tried placing the figure in different ways [h], [h!], [ht], [ht!] but I always get the same output..
Code: Select all
\subsubsection{Messung 1, Protokoll: UDP, FPS: 15}
% THIS IS BELOW ....
\paragraph{Balkendiagramm}
% ... THIS :/
\begin{figure}[hb!]
\centering
\includegraphics[width=\textwidth]{pictures/latencies/messung1,udp.png}
\caption{Messung 1: Diagramm}
\end{figure}
% SAME SITUATION ...
\paragraph{Durchschnittliche Latenzen}
% ... HERE
\begin{table}[h!]
\centering
\begin{tabular}{ | l | l | }
\hline
\textbf{Latenz} & \textbf{Ø in ms} \\
\hline
Round-Trip-Time & 52,85320833 \\
\hline
JPEG-Kompression & 10,492475 \\
\hline
Kodierung: Client & 0,675591667 \\
\hline
Latenz: Client -> Server & 7,213616667 \\
\hline
Positionserkennung & 4,818333333 \\
\hline
Rendering & 4,818333333 \\
\hline
Kodierung: Server & 5,981666667 \\
\hline
Latenz: Server -> Client: & 7,608333333 \\
\hline
Zeichnung & 0,347675 \\
\hline
\end{tabular}
\caption{Messung 1: Ø-Latenzen}
\end{table}
Regards,
kangaro0