Graphics, Figures & Tablestable heading alone in vertical direction

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
dmuthu_cse
Posts: 97
Joined: Fri Sep 04, 2009 4:56 pm

table heading alone in vertical direction

Post by dmuthu_cse »

hello friends,

As my table heading is very big it is impossible to accomodate in a single paper, when i place it horizontally.

it will be comfortable if place the headings vertically. and the remaining table contents can be placed normally.

For your clear idea, i have attached the pdf for your clear reference.

Thank you in anticipation.

Regards,
Muthu
Attachments
muthu.pdf
(166.2 KiB) Downloaded 299 times

Recommended reading 2024:

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

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

User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

table heading alone in vertical direction

Post by gmedina »

Hi,

you can rotate the text using, for example, the \rotatebox command provided by the graphicx package, as the following example suggests:

Code: Select all

\documentclass{article}
\usepackage{graphicx}

\begin{document}

\begin{tabular}{|l|c|}\hline
  \rotatebox{90}{some rotated text} & \rotatebox{90}{some rotated text}\\\hline
 some text & some text\\ \hline
\end{tabular}

\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
dmuthu_cse
Posts: 97
Joined: Fri Sep 04, 2009 4:56 pm

Re: table heading alone in vertical direction

Post by dmuthu_cse »

Hello Gmedina,

Thank you very much...

That's really a great idea.... And it is working fine..

Regards,
Muthu
Post Reply