Graphics, Figures & Tables ⇒ table heading alone in vertical direction
-
- Posts: 97
- Joined: Fri Sep 04, 2009 4:56 pm
table heading alone in vertical direction
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
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
table heading alone in vertical direction
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}
-
- Posts: 97
- Joined: Fri Sep 04, 2009 4:56 pm
Re: table heading alone in vertical direction
Thank you very much...
That's really a great idea.... And it is working fine..
Regards,
Muthu