
I wanna make something like the table in the picture.So far i only managed to do this:
\documentclass{article}
\usepackage{longtable}
\setlength\LTleft{-110pt}
\setlength\LTright{\fill}
\begin{document}
\begin{longtable}{lllll}
\caption{Quick guide to GPU terms}\\
\hline
\bfseries Type &\bfseries Descriptive name &\bfseries Closest Term &\bfseries Official term &\bfseries Definition\\ \hline
\endfirsthead
\hline
\endlastfoot
\hline
Program abstractions &Vectorizable Loop &Vectorizable Loop &Grid &Vectorizable Loop \\ \hline
(put in this space the above title vertically) &some &some &some &some \\ \hline
(same as above) &some &some &some &some \\ \hline
Machine object &Thread SIMD & Thread Vector & Warp & SIMD Processor\\ \hline
(put in this space the above title vertically)&some & some & some & some\\ \hline
(same as above)&some & some & some & some\\ \hline
Processing Hardware &some & some & some & some\\ \hline
(put in this space the above title vertically)&some & some & some & some\\ \hline
(same as above)&some & some & some & some\\ \hline
Memory Hardware &some & some & some & some\\ \hline
(put in this space the above title vertically)&some & some & some & some\\ \hline
(same as above)&some & some & some & some\\ \hline
\end{longtable}
\end{document}
Can anyone point how to do this?
