Tabelle verutscht

Tabellen und Grafiken erstellen und anordnen


hacke78
Forum-Newbie
Forum-Newbie
Beiträge: 6
Registriert: Fr 5. Jun 2009, 15:37

Tabelle verutscht

Beitrag von hacke78 »

Hallo
ich hab ein Latex Code geschrieben, in dem ein 4 Tabellenvorkommen. Die sollen auch alle auf eine Seite, mit ganz wenig Fliesstext dazwischen. Die 4. Tabelle verutscht aber auf die nächste Seite und ich hab keinen blassen Schimmer wieso.
\newpage


\aufgabe {5}
 
\begin{table} [h]%[1000 100]
	\centering
		\begin{tabular} {|C{1cm}|C{1cm}|C{1cm}|C{1cm}|C{1cm}|}
		\hline
			3 & 1 & 5 & 7 & 2\\
			\hline
			2 & 1 & 6 & 5 & 6\\
			\hline
			1 & 0 & 7 & 6 & 7\\
			\hline
			0 & 1 & 2 & 6 & 5\\
			\hline
			2 & 1 & 0 & 1 & 6\\
			\hline
		\end{tabular}
	\caption{Ursprungsmatrix}
	\label{tab:Ursprungsmatrix}
\end{table}

Die fx und fy Matrizen berechnen sich durch eine Faltung der Ursprungsmatrix mit den Matrizen aus dem Script Kapitel 3, Seite 18. 

\begin{table} [h]%[1000 100]
	\centering
		\begin{tabular} {|C{1cm}|C{1cm}|C{1cm}|C{1cm}|C{1cm}|}
		  \hline
			0 & 0 & 0 & 0 & 0\\
			\hline
			0 & 16 & 20 & -3 & 0\\
			\hline
			0 & 18 & 21 & 3 & 0\\
			\hline
			0 & 8 & 16 & 12 & 0\\
			\hline
			0 & 0 & 0 & 0 & 0\\
			\hline
		\end{tabular}
	\caption{fx-Matrix}
	\label{tab:fxmatrix}
\end{table}


\begin{table} [h]%[1000 100]
	\centering
		\begin{tabular} {|C{1cm}|C{1cm}|C{1cm}|C{1cm}|C{1cm}|}
		  \hline
			0 & 0 & 0 & 0 & 0\\
			\hline
			0 & 2 & -2 & 5 & 0\\
			\hline
			0 & 6 & 7 & 3 & 0\\
			\hline
			0 & 4 & 18 & 18 & 0\\
			\hline
			0 & 0 & 0 & 0 & 0\\
			\hline
		\end{tabular}
	\caption{fy-Matrix}
	\label{tab:fymatrix}
\end{table}
Die Kantenstärke wird nun mit $ s= \sqrt{fx^2+fy^2} $ berechnet.
\begin{table} [h]%[1000 100]
	\centering
		\begin{tabular} {|C{1cm}|C{1cm}|C{1cm}|C{1cm}|C{1cm}|}
		  \hline
			0 & 0 & 0 & 0 & 0\\
			\hline
			0 & 16.12 & 20.1 & 5.83 & 0\\
			\hline
			0 & 18.97 & 22.14 & 4.24 & 0\\
			\hline
			0 & 8.94 & 24.08 & 21.63 & 0\\
			\hline
			0 & 0 & 0 & 0 & 0\\
			\hline
		\end{tabular}
	\caption{s-Matrix}
	\label{tab:smatrix}
\end{table}


\newpage

\aufgabe {6}
Freue mich über Hilfe.
Was mir mein Editor noch ausgibt beim umwandeln in dvi :
Latex Warning: 'h' float specifier changed to 'ht'.
Denke mal das hängt damit zusammen.

hacke78
Forum-Newbie
Forum-Newbie
Beiträge: 6
Registriert: Fr 5. Jun 2009, 15:37

Funktioniert nun

Beitrag von hacke78 »

Man kann Latex auch zwingen, nicht h durch ht zu ersetzen.
\begin{table} [h!t]%[1000 100]
	\centering
		\begin{tabular} {|C{1cm}|C{1cm}|C{1cm}|C{1cm}|C{1cm}|}
		  \hline
			0 & 0 & 0 & 0 & 0\\
			\hline
			0 & 16.12 & 20.1 & 5.83 & 0\\
			\hline
			0 & 18.97 & 22.14 & 4.24 & 0\\
			\hline
			0 & 8.94 & 24.08 & 21.63 & 0\\
			\hline
			0 & 0 & 0 & 0 & 0\\
			\hline
		\end{tabular}
	\caption{s-Matrix}
	\label{tab:smatrix}
\end{table}

Das funktioniert....

Antworten