I want to achieve a table with the headers being rotated 90 degree so that it appears bottom up.
I use the following code with both rotation 90 and -90 but I am facing different errors. Here is the code:
\documentclass[graybox,envcountchap,sectrefs]{svmono}
\usepackage{rotating}
\usepackage{amssymb}% http://ctan.org/pkg/amssymb
\usepackage{pifont}% http://ctan.org/pkg/pifont
\usepackage{array}
\newcolumntype{P}[1]{>{\centering\arraybackslash}p{#1}}
\begin{document}
\begin{table}
\begin{tabular}{ | P{4cm} | P{1cm} | P{1cm} }
\hline
col 0
& \begin{rotate}{90} Col1 \end{rotate}
& \begin{rotate}{-90} Col2 too much text is written here that i want to split on multiple line but rotated 90 degree \end{rotate}\\[25ex]
\svhline
first row & \checkmark & \ding{55} \\
\hline
\end{tabular}
\end{table}
\end{document}
So my questions are:
- How to start from the button towards the top like first 'Col1' but to start from the bottom of the cell
- How to make it fit the cell size and use multi rotated line, shall I do that by hand or can it be made in an automatic manner, and if by hand how can that be done
Here is a link to the class svmono.cs

\documentclass{...}, the required\usepackage's,\begin{document}, and\end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem. – samcarter_is_at_topanswers.xyz Dec 21 '16 at 14:24Undefined control sequence. \svhline– samcarter_is_at_topanswers.xyz Dec 21 '16 at 14:33