[Tex/LaTex] Rotate text inside table and align it to the centre of combined rows

horizontal alignmentrotatingtablesvertical alignment

I would like to rotate text inside a table and align to the centre as shown. The next column has several other rows which are combined in the "standards" row. Something similar to the first picture(aligning with the vertical line) and not the second. I would appreciate suggestions on the best way to do this. Thanks

enter image description here enter image description here

Best Answer

You can use \rotatebox as follows:

\documentclass{article}
\usepackage{graphicx}
\begin{document}

\begin{tabular}{c|c|}
\hline\\
\hline
& standards\\
\rotatebox{90}{standards }&\\
\end{tabular}
\end{document}

enter image description here

Related Question