Graphics, Figures & TablesCentral Full Page Landscape Tables

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
MuddyFox
Posts: 1
Joined: Sat Sep 14, 2013 7:16 pm

Central Full Page Landscape Tables

Post by MuddyFox »

So I would like my table to be central on the page. But I can't seem to work out how to do that.

Code: Select all

Code, edit and compile here:
\begin{landscape}
\begin{table}[p]
\caption{List of LiDAR metrics used and their relation to forest structure}
\label{tab:LiDAR_Metrics}
\centering
\begin{center}
\begin{tabular}{p{7.5cm}|p{11.5cm}}
{\bf LiDAR metric} & {\bf Relation to forest structure} \\\hline \\[-1.5ex]
Persistent Green (from hereon referred to as FPC) & Similar to FPC but not affected by grasslands, this is a summary of the foliage at the time of measure, derived from Landsat. \\[1ex]
L-band LHH & Backscatter from LHH may be used to measure big trucks and branches (double bounce). \\[1ex]
L-band LHV & Backscatter from LHV may be used for measuring canopy (volume scattering). \\[1ex]
Mean height (non ground returns only) & Useful measure for deriving other parameters such as change over time. \\ [1ex]
Min height (non ground returns only) & Measure of the lowest vegetation height - indication of understory presence. \\[1ex]
Max height (non ground returns only) & Relates to emergence or taller trees, potentially relating to age of trees. \\[1ex]
SD height (non ground returns only) & Measures the variation in height which can be related to the age of species or understory presence. \\[1ex]
Skewness height & The height distributing can be skewed from a normal distribution which may reflect trends in the tree age composition of the forest. \\[1ex]
Gap fraction & A measure of the density of the canopy. Gap fraction can also be used to show canopy cover, i.e., the inverse of gap fraction is equal to canopy cover. \\[1ex]
Kurtosis height & Describes the "peakedness" of distribution and may be related to the presence of understory in the forest. \\[1ex]
Height-Scaled Canopy Openness Index (HSCOI) & Effectively the sum of the inverse canopy density scaled by the relative height with respect to the kernel window. \\ [1ex]
Percentiles 5\,-\,100 & Used to describe the distribution of returns at different heights. \\[1ex]\hline
\end{tabular}
\end{center}
\end{table}
\end{landscape}
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Can anyone help? I'm new to all this so maybe obvious answer.

Thanks in advance!
Attachments
table-centering.png
table-centering.png (95.13 KiB) Viewed 4923 times
Last edited by cgnieder on Sun Sep 15, 2013 7:52 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

GerlofVito
Posts: 27
Joined: Wed May 16, 2012 8:24 pm

Re: Central Full Page Landscape Tables

Post by GerlofVito »

It probably appears to not be centered because the rest of your paper is not in landscape. LaTeX typically gives lots of room for footers, and the large footer from the non-landscape pages occupies the same space on the landscape pages (unless you alter the margins). So the bottom margin of your normal page now sits in the left margin of a this landscape page.

You could try using the geometry package to change the margins on the landscape page, but I'm not sure that would look better. It seems the table is probably sitting in the appropriate area of the page right now.
Post Reply