I am quite new to LaTeX and try to make my first table. The problem is I have not found any possibility to make it look like I would like due to contentwise reasons. In the end, the ideal table look would somehow be as follows so that "line1b" is centred compared to Line1a and Line2a:
Code: Select all
______________
Headl1
Head2 | Head3
______________
Line1a|
|Line1b
Line2a|
______________
Line3a|Line2b
______________
Line4a|Line4b
______________
Here is how far I got:
Code: Select all
\documentclass[a4paper,12pt,draft,headsepline]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage[ngerman,british]{babel}
\usepackage{multirow}
\usepackage{multicol}
\usepackage{colortbl}
\begin{document}
\begin{center}\begin{tabular}{c|c}\hline\hline
\multicolumn{2}{>{\columncolor[rgb]{0.8,0.8,0.8}}c}{Types of \ldots}\\ \hline
\rowcolor[rgb]{0.8,0.8,0.8} Healthcare States & Welfare States\\ \hline
\multirow{2}{*}{Liberal} & Pay on your own \\ & Charity\\ \hline
Provision & Social-democratic\\ \hline
Insurance & Conservative\\ \hline
\end{tabular}\end{center}
\end{document}