I have the following table and try to adjust the row height so that the text is not as crowded as it currently is. Is there a method to do so?
Code:
\documentclass[12pt, a4paper]{report}
\usepackage[margin=20mm]{geometry}
\begin{document}
\begin{table}[]
\begin{tabular}{lll}
\textbf{Variable Conceptualizations} \\
\hline
Variable Function & Variable & Operationalization \\ \hline
Dependent Variable & Z{i,t-1} & $\frac{X_{i,t-1}}{Y_{i,t-1}}$ \\
Independent Variable & Var1 & \begin{tabular}[c]{@{}l@{}}Text\\ Text2\end{tabular} \\
& Var2 & \begin{tabular}[c]{@{}l@{}}Text\\ Text2\end{tabular} \\
Moderator Variable & Var3 & $\frac{X_{i,t}}{Y_{i,t}}$ \\
Control Variable & Var4 & $ln(X)_{i,t}$ \\
& X & $\frac{X_{i,t}} {X_{i,t}}$ \\
& Var5 & $\frac{X_{i,t}}{X_{i,t}}$\\
& Var6 & \begin{tabular}[c]{@{}l@{}}Text \\ Text2\end{tabular} \\
& Var7 & \begin{tabular}[c]{@{}l@{}}Text\\ Text2\end{tabular} \\
& Var8 & $\frac{X}{Y}$ \\
& Var9 & $\frac{X}{Y}$ \\
& Var10 & $\frac{X}{Y}$ \\
& Var11 & Text \\ \hline
& & \\ \hline
\end{tabular}
\caption{CAPTION 1}
\end{table}
\end{document}
Thanks!



