1

How is it possible to create a table as that given below? Of course I want just the basic idea of how achieving the very structure and not the typesetting of the contents:-!) enter image description here

Dimitris
  • 1,405

1 Answers1

4

enter image description here

\documentclass{article}


\usepackage{tcolorbox}



\begin{document}

\begin{tabular}{ll}
\tcbox[colback=red!5!white,colframe=red!75!black]{
    Micromorphic media
}
&
\parbox{3in}{\begin{itemize}
\item Kinematics
\item Energy
\end{itemize}}
\end{tabular}
\end{document}
JPi
  • 13,595
  • Thank you very much for the reply. But the alignement is not the same as the original. – Dimitris May 11 '17 at 13:58
  • For that, see e.g. https://tex.stackexchange.com/questions/122266/vertical-alignment-using-tabularx-arraystretch – JPi May 11 '17 at 14:42