-2

I have a para that is wrapped in a container. The container has a container heading , border radius on the corners and color. How do I achieve it with LaTex? I have attached a sample sketch for reference. The shaded portion will be filled with color

enter image description here

Kaushik
  • 99

1 Answers1

3

This is literally the default setting of tcolorbox.

\documentclass{article}
\usepackage{tcolorbox}
\begin{document}

\begin{tcolorbox}[title={Heading}]
  Some Text \ldots
\end{tcolorbox}

\end{document}

enter image description here

Henri Menke
  • 109,596