I'm trying to figure out how to reduce the height of rows in a table, but '\arraystretch' doesn't seem to work.. I beleive the issue is that I should place it in the preamble of my main document, although I just need to redeuce the height of the rows in one table within a chapter of my thesis...
Here is the code of my table so far:
Code: Select all
\begin{table}[h!]
\caption{Current amplitude response at low frequencies in the mmW band (small signal regime)}
\centering
\small
\renewcommand{\arraystretch}{0.8}% Tighter
\begin{tabular}{p{1.5cm}p{7cm}}
\hline\hline
& \centering\arraybackslash $i(2\omega_{RF}\pm\omega_{IF})$\\
\hline
\[\text{OB2B}\] & \begin{equation}
\Re P_0 m_{AM}m_{RF}^2\sin^2 \varphi_{DC} \label{gain_OB2B}
\end{equation}\\
\[\text{SSMF}\] & \begin{equation}
\Re P_0 m_{AM}m_{RF}^2\sin^2 \varphi_{DC}(1\pm j \alpha \kappa P_0 \beta L \omega_{RF}) \label{gain_SSMF}
\end{equation}\\
\hline\hline
\end{tabular}\label{gainTable1}
\end{table}
Many thanks in advance!