I would like to know how I can create a bracket around a list, which looks like the picture below:
Thanks :)
I would like to know how I can create a bracket around a list, which looks like the picture below:
Thanks :)
I started using only \vbox, etc... but so I am told this is scary, so I tried my best to use LaTeX boxes which however all force quitting vertical mode which induces complications for vertical spacing. Anyway,
\documentclass{article}
\begin{document}
XXXX
\noindent\parbox[t]{\linewidth}{\hrule width 10pt
\noindent
\mbox{\vrule
\hspace{8pt}\begin{minipage}{\dimexpr\linewidth-0.4pt-8pt\relax}
\vspace{4pt}
This is my list, you may want to configure it using package
enumitem for example to modify the label indent. The various
vspace allow to customize vertical spacing.
\begin{itemize}
\item A
\item B
\item C
\vspace{6pt}
\end{itemize}
\end{minipage}}
\hrule width 10pt
\vspace{\baselineskip}
}
XXXX
\end{document}
tcolorboxpackage. – Sigur Feb 20 '18 at 21:48