I am a novice LaTeX user and trying to create a table similar to this one:
I need circles where horizontal and vertical lines intersect but could not figure out how to do it. Will you please suggest me a way forward?
Thank you. Here is my code
\documentclass{beamer}
\usetheme{Berlin}
\usecolortheme{beaver}
\setbeamertemplate{footline}[frame number]
\setbeamertemplate{itemize item}[circle]
\setbeamertemplate{enumerate item}[circle]
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{footline}[frame number]
\usepackage{multicol}
\begin{document}
\begin{frame}{Literature}
\label{specific literature}
\begin{tabular}{ r r | c l }
Eren et al., (2019) & & & \\
\cline{2-2}
& & & \\
Berrill et al., (2018) & & & \\
& & & \\
Lee et al., (2014) & & & Empirical Studies \\
& & & \\
Ayyagari and Kosová (2010) & & & \\
& & & \\
De Backer and Sleuwaegen (2003)& & & \\
& & & \\
& & & \\
Markusen and Venables (1999) & & & \\
& & & \\
Rodrìguez-Clare (1996) & & & Theoretical Studies \\
& & & \\
Grossman (1984) & & & \small \hyperlink{literature}{\beamerskipbutton{Literature}} \\
\end{tabular}
\end{frame}
\end{document}

