General ⇒ pagebreak for a bigger table
pagebreak for a bigger table
I write my diploma thesis with Tex, but I have no deeper experiences yet. I although searched a lot in the www, but I did not find any solutions for my problem.
I have a bigger table which I wanne place in the flow text, but Tex put it at the last page of the chapter... *damn*
Has anyone any ideas for solving my problem?
\begin{table}[h]
\centering
\caption[Werk- und Gefahrenstoffe des Beispielsgerätes]{Werk- und Gefahrenstoffe des Beispielsgerätes\protect\footnotemark}
\begin{tabular}{p{1cm}|p{3.5cm}|p{8.25cm}|p{1.35cm}}
\textbf{Teil 1} & \textbf{Zu separierende Baugruppen} & \textbf{Demontagehinweise} & \textbf{Masse} \\\hline
& Lithium-Batterie & Schadstofffreie Batterie, fest eingebaut unter Leiterplatte auf rechter Türinnenseite \\
& Lithium-Batterie & Schadstofffreie Batterie, fest eingebaut im Uhrenbaustein integriert auf Gemini-Leiterplatte, links im VMW-Rack, linke Türinnenseite unten \\
& LCD-Anzeige & im Bedienungsterminal an Vorderfront \\
& He-Ne-Laser & auf Optikplatte durch Lösen von zwei Innensechskantschrauben leicht entnehmbar\\
& \ldots & \ldots \\
\hline \hline
\textbf{Teil 2} & \textbf{Betriebs- und sonstige Flüssigkeiten} & \textbf{Demontagehinweise} & \textbf{Menge} \\ \hline
& Getriebeöl & mineralisch; im Aluminium-Guss Getriebeblock der Scannereinheit & 390ml \\
& \ldots & \ldots & \ldots \\
\hline \hline
\textbf{Teil 3} & \textbf{sonstige Bauteile} & \textbf{Demontagehinweise} & \textbf{Masse} \\ \hline
& Seitenwände & ferromagnetischer Stahl; verzinkt und lackiert & 14,85kg \\
& Dachabdeckung & >PS-HI-FR<, lackiert & 3,1kg \\
& Haltegriff & nichtrostender Stahl & 0,5kg \\
& Frontabdeckungen & >PS-HI-FR<, lackiert & 2,83kg \\
& \ldots & \ldots & \ldots \\
\hline \hline
\textbf{Teil 4} & \multicolumn{2}{c|}{\textbf{allg. Demontagehinweise}} & \\ \hline
& Verriegelungshebel 1 & unter Terminal - Öffnen der linken Tür durch Umlegen des Hebels nach rechts \\
& Verriegelungshebel 2 & Öffnen der rechten Tür durch Hochziehen des Hebels, danach Tür aufschwenken \\
& \ldots & \ldots \\
\end{tabular}
\label{tbl:BeiRecyclingTab}
\end{table}
\footnotetext{in Anlehnung an \cite{VDIVereinDeutscherIngenieure.Juli2002}, S. 30f.}
Thanks a lot for your help.
André
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
pagebreak for a bigger table
As used in your code, you should get a warning (or just a simple message) in the log file about the fact that the parameter [h] is overwritten with [ht] by the compiler. You should use more than one parameter for placing the float environment (table in this case).
Code: Select all
\begin{table}[!ht]
…
\end{table}
If the simple supplement of parameters doesn't help, insert a \clearpage (or \cleardoublepage) command to force the output of all float environments declared up to this line.
Code: Select all
\begin{table}[!ht]
…
\end{table}
\clearpage
Best regards and welcome to the board
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: pagebreak for a bigger table
Re: pagebreak for a bigger table
now I have a new problem - footnotes appear on wrong page...
\begin{table}[!ht]
\centering
\caption[Werk- und Gefahrenstoffe des Beispielsgerätes]{Werk- und Gefahrenstoffe des Beispielsgerätes\protect\footnotemark}
\begin{tabular}{p{1cm}|p{3.5cm}|p{8.25cm}|p{1.35cm}}
\textbf{Teil 1} & \textbf{Zu separierende Baugruppen} & \textbf{Demontagehinweise} & \textbf{Masse} \\\hline
& Lithium-Batterie & Schadstofffreie Batterie, fest eingebaut unter Leiterplatte auf rechter Türinnenseite \\
& Lithium-Batterie & Schadstofffreie Batterie, fest eingebaut im Uhrenbaustein integriert auf Gemini-Leiterplatte, links im VMW-Rack, linke Türinnenseite unten \\
& LCD-Anzeige & im Bedienungsterminal an Vorderfront \\
& He-Ne-Laser & auf Optikplatte durch Lösen von zwei Innensechskantschrauben leicht entnehmbar\\
& \ldots & \ldots \\
\hline
\hline
\textbf{Teil 2} & \textbf{Betriebs- und sonstige Flüssigkeiten} & \textbf{Demontagehinweise} & \textbf{Menge} \\ \hline
& Getriebeöl & mineralisch; im Aluminium-Guss Getriebeblock der Scannereinheit & 390ml \\
& \ldots & \ldots & \ldots \\
\hline
\hline
\textbf{Teil 3} & \textbf{sonstige Bauteile} & \textbf{Demontagehinweise} & \textbf{Masse} \\ \hline
& Seitenwände & ferromagnetischer Stahl; verzinkt und lackiert & 14,85kg \\
& Dachabdeckung & >PS-HI-FR<, lackiert & 3,1kg \\
& Haltegriff & nichtrostender Stahl & 0,5kg \\
& Frontabdeckungen & >PS-HI-FR<, lackiert & 2,83kg \\
& \ldots & \ldots & \ldots \\
\hline
\hline
\textbf{Teil 4} & \multicolumn{2}{c|}{\textbf{allg. Demontagehinweise}} & \\ \hline
& Verriegelungshebel 1 & unter Terminal - Öffnen der linken Tür durch Umlegen des Hebels nach rechts \\
& Verriegelungshebel 2 & Öffnen der rechten Tür durch Hochziehen des Hebels, danach Tür aufschwenken \\
& \ldots & \ldots \\
\end{tabular}
\label{tbl:BeiRecyclingTab}
\end{table}
\footnotetext{in Anlehnung an \cite{VDIVereinDeutscherIngenieure.Juli2002}, S. 30f.}
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
pagebreak for a bigger table
Code: Select all
\begin{table}[!ht]
\centering
\begin{minipage}{\linewidth}
\caption[Werk- und Gefahrenstoffe des Beispielsgerätes]{Werk- und Gefahrenstoffe des Beispielsgerätes\footnote{in Anlehnung an \cite{VDIVereinDeutscherIngenieure.Juli2002}, S. 30f.}}\label{tbl:BeiRecyclingTab}
\begin{tabular}{p{1cm}|p{3.5cm}|p{8.25cm}|p{1.35cm}}
...
\end{tabular}
\end{minipage}
\end{table}
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10