I created the following table:
\begin{columns}[c] \begin{column}{7.5cm} \begin{table}[ht] \small \centering \caption{Test table} \begin{tabular}{ll} \midrule A &$a \sim \qty{e6}{m}$\\ B &$b \sim \qty{e-4}{s^{-1}}$\\ C &$c \sim \qty{e8}{m.s^{-2}}$\\ \begin{rcases} \textnormal{D}\\ \textnormal{E}\\ \end{rcases} &$d \sim \qty{e2}{K}$\\ F &$f = \qty{e-3}{m^2.s^{-2}.K}$\\ \bottomrule \end{tabular} \end{table} \end{column} \hspace{7.5cm} \end{columns} I would like to add a bracket to the right side of the table as shown in the screenshot and I would like to place a text next to the bracket containing several quantities.
I found other questions on that topic, but I could not use them for my specific example. Do you know how I could do it?
EDIT:
\documentclass[serif,10pt, aspectratio=169]{beamer} \usepackage{booktabs} % package for table \usepackage{siunitx} % package for units and numbers \usepackage{mathtools} \usepackage[singlelinecheck=false]{caption} \begin{document} \section{Section1} \frame{{title}{} \begin{columns}[c] \begin{column}{7.5cm} \begin{table}[ht] \small \centering \caption{Test table} \begin{tabular}{ll} \midrule A &$a \sim \qty{e6}{m}$\\ B &$b \sim \qty{e-4}{s^{-1}}$\\ C &$c \sim \qty{e8}{m.s^{-2}}$\\ \begin{rcases} \textnormal{D}\\ \textnormal{E}\\ \end{rcases} &$d \sim \qty{e2}{K}$\\ F &$f = \qty{e-3}{m^2.s^{-2}.K}$\\ \bottomrule \end{tabular} \end{table} \end{column} \hspace{7.5cm} \end{columns} } \end{document} 


\documentclass{...}, the required\usepackage's,\begin{document}, and\end{document}. That may seem tedious to you, but think of the extra work it represents for the users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.