General ⇒ Rotating tables issue...
Rotating tables issue...
\begin{table}
\center
\rotcaption{Averaged characteristic values of potential and current density for synthesized ingots.}
\label{electrochemistry}
\begin{sideways}
\begin{tabular}{cccccccc}
.......
\end{tabular}
\end{sideways}
\end{table}
The problem is that the table appears cut in half at the bottom of the pdf page, while the caption is centered...
How do I fix this?
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
Rotating tables issue...
Code: Select all
\documentclass{article}
\usepackage{rotating}
\begin{document}
\begin{table}
\centering
\rotcaption{This is just a test table.}
\label{tab:testtable}
\begin{sideways}
\begin{tabular}[b]{cccccccc}
\hline
text & text & text & text & text & text & text & text\\
\hline
\end{tabular}
\end{sideways}
\end{table}
\end{document}Re: Rotating tables issue...
Maybe I need to update my Latex? I am not sure, I am a novice user.
Thanks for the help.
Rotating tables issue...
BNPadgett wrote: which leads me to believe there is something wrong with the formatting of the table
The problem was the \rotcaption command. I suggest you to rotate simulataneously the table and the caption, using the sidewaystable environment, as the following example shows:
Code: Select all
\begin{sidewaystable}
\centering
\caption{Averaged energy dispersive x-ray spectroscopy results gathered for the synthesized intermetallic phases.}
\label{EDS}
\begin{tabular}{rcccccccc}
...contents of the table...
\end{tabular}
\end{sidewaystable}BNPadget wrote: Maybe I need to update my Latex?
What LaTeX distribution are you using?