I searched on the internet, but I could not find the way to wrap text in tables with columns spanning more than one row. Here is a MWE and thank you in advance!
Code: Select all
\documentclass[12pt,a4paper]{article}
\usepackage{booktabs}
\usepackage{multirow}
\begin{document}
\begin{tabular}{cccc}
\toprule
& & \multicolumn{2}{c}{Logic of rule adoption} \\
\cmidrule{3-4}
& & Logic of consequences & Logic of appropriateness \\
\midrule
\multirow{2}{*}{Principal actor in rule adoption process} & EU-driven & External incentives model & Social learning model \\
& CEE-driven & Lesson-drawing model & Lesson-drawing model \\
\bottomrule
\end{tabular}
\end{document}