![Como criar uma mesa com três pontos verticais no meio?](https://rvso.com/image/449620/Como%20criar%20uma%20mesa%20com%20tr%C3%AAs%20pontos%20verticais%20no%20meio%3F.png)
Responder1
Não sei para que serve a quarta coluna da tabela em seu comentário, mas a preservei em minha dica.
\documentclass{article}
\begin{document}
\begin{tabular}{l|l|ll}
\cline{1-3} State & Action & Value & \\
\cline{1-3}
$s_1$ & $a_1$ & $Q(s_1,a_1)_1$ & \\
\cline{1-3}
\multicolumn{1}{c}{$\vdots$} & \multicolumn{1}{c}{$\vdots$} & \multicolumn{1}{c}{$\vdots$} & \\ \cline{1-3}
& & & \\
\cline{1-3}
\end{tabular}
\end{document}
Responder2
Semelhante à resposta de @Przemysław Scherwentke (+1), mas com o uso tblr
do tabularray
pacote:
\documentclass{article}
\usepackage{xcolor}
\usepackage{tabularray}
\begin{document}
\begin{center}
\begin{tblr}{colspec={ *{3}{Q[c, mode=math, wd=5em]} },
row{1} = {mode=text, l},
hline{1-3, Y-Z} = {solid},
vline{2-Y} = {1-2, Z}{solid},
}
State & Action & Value \\
s_1 & a_1 & Q(s_1,a_1)_1 \\
\SetRow{font=\Huge, rowsep=3ex}
\vdots & \vdots & \vdots \\
s_n & a_n & Q(s_n,a_n)_n \\
\end{tblr}
\end{center}
\end{document}