[Tex/LaTex] Curly brackets spanning multiple lines (no math env) | Only 1 curly bracket, at 1 side

tables

Adapted from the question:

Inside a tabular environment (non-math context), how to have only 1 curly bracket (e.g. only the left one) spanning multiple lines of text, please?

\documentclass[12pt]{article}
\usepackage[a4paper]{geometry}

\begin{document}

I don't want the right curly bracket,
$\left\{
\begin{tabular}{c}
list item 1 \\
list item 2 \\
list item 3
\end{tabular}
\right\}$
only the left one please.

\end{document}

Best Answer

Just change \right\} to \right.. (The "." immediately after \right stands for "nothing here".)

enter image description here

\documentclass[12pt,a4paper]{article}
\usepackage{geometry}

\begin{document}

I'm getting a left-hand curly brace
$\left\{
\begin{tabular}{@{}c@{}}
list item 1 \\
list item 2 \\
list item 3
\end{tabular}
\right.$
and none on the right.

\end{document}