Document Classes ⇒ Citation language and a table question
Citation language and a table question
An unrelated question is about tables. In the same document I present quite a lot of numerical data in a big table that fills entirely one page. The table is infact so large that its lowest rows plus the caption go over the page number at the bottom of the page. What do you suggest as solutions to get rid of the overlapping? Moving the table a few cm up or reducing its size would be best.
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
Citation language and a table question
JyriL wrote: [...] An unrelated question is about tables. In the same document I present quite a lot of numerical data in a big table that fills entirely one page. The table is infact so large that its lowest rows plus the caption go over the page number at the bottom of the page. What do you suggest as solutions to get rid of the overlapping? Moving the table a few cm up or reducing its size would be best.
You could reduce the size by changing the font size generally for the whole table.
Code: Select all
\begin{table}[!p]
\centering
\small
\begin{tabular}{lcr}
...
\end{tabular}
\normalsize
\caption{A large table reduced in size}\label{tab:table}
\end{table}
Best regards and welcome on Board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Citation language and a table question
Concerning your problem with big tables, you may find useful this thread about too wide tables. Some of the ideas there can be applied in your case. Instead, you can move up the table with \raisebox, writing something like \raisebox{vertical space}{code of the tabular environment}
Citation language and a table question
localghost wrote: When using the caption package, you can omit the last switch for normal font size.
The original code for \caption contains a \normalsize, too, so usually it can be omitted anyway.
Axel
Re: Citation language and a table question
Re: Citation language and a table question
newenvironment{myownpersonaltable}{\small\begin{table}}{\end{table}}
and if you want to keep the same name for the environment, add:
\renewenvironment{table}{\begin{myownpersonaltable}}{\end{myownpersonaltable}}
(check for the optional arguments h,t,b,...)
B.A.
Re: Citation language and a table question
Citation language and a table question
Code: Select all
\newenvironment{smalltable}{\begin{table}[!htb]\small}{\end{table}}
\newenvironment{foottable}{\begin{table}[!htb]\footnotesize}{\end{table}}
\newenvironment{scripttable}{\begin{table}[!htb]\scriptsize}{\end{table}}