I'm trying to achieve something like this
+ --------------------------------------
+ | - Item entry one with multiple
+ A | rows blablabla
+ A | - Item entry with blabla
+ | - Item entry
+ --------------------------------------
So here some explanations:
- In the left column, I want to have text but rotated by 90 degree (sorry, don't know how to write this in the example above ^^).
- Rotated text should be aligned vertically
- Itemization should not have any margins.
- paralist package is not an option, because it causes a compile error (I use some other packages that might cause the problem)
At the moment, I'm doing something like this:
\documentclass[12pt,twoside,openright,a4paper]{memoir}
\usepackage{soul}
\usepackage{tikz}
\usetikzlibrary{calc}
\usetikzlibrary{decorations.pathmorphing}
\usepackage{enumitem}
\usepackage{tabularx}
\usepackage{booktabs}
\usepackage[table]{xcolor}
\usepackage{tabu}
\begin{document}
\begin{tabular}{ m{0.4cm} p{7cm} }
\rotatebox{90}{AA} &
\begin{itemize}
[label=\Square,leftmargin=*,
nosep,noitemsep,partopsep=0pt,topsep=-35pt,after=\strut]
\item Item entry one with multiple rows blablabla
\end{itemize}
\\
\end{tabular}
\end{document}
My problems are
- The rotated text is fixed at the top, not centered vertically. I also tried a
\centeringin therotatebox, but no effect. - The itemization has a lot of margins. Why? I define
topsetto be negative?!?
Thank you for your help! I'm starting to get nuts about this. If there is a solution without tables, e.g., floating boxes, it would also be appreciated!
