My first post, so first: sorry for any etiquette errors. Actually I rarely need a lot of time to find solutions, the amount of information that people out there share is incredible... anyway, this time I got stock.
I have the following table:
Code: Select all
\documentclass{article}
\usepackage{tabularx}
\usepackage[table]{xcolor}
\usepackage{tabularx}
\usepackage{multirow}
\usepackage{pst-node}
\begin{document}
\begin{table}[h]
\begin{tabularx}{\linewidth}{ X X X }
\multicolumn{3}{l}{\textbf{Title}} \\
\hline
\small\textbf{I} & \small\textbf{II} & \small\textbf{III} \\
\multirow{3}{*}{A} & 1 & \multirow{2}{*}{X}\\
& 2 & \\
& 3 & \multirow{2}{*}{Y} \\
\multirow{3}{*}{B} & 4 & \\
& 5 & \multirow{2}{*}{Z} \\
& 6 &\\
\end{tabularx}
\caption{Caption}\label{tab:danos}
\end{table}
\end{document}
Any help?
Thanks a lot in advance!