¿Cómo puedo cambiar el tamaño de fuente de mi tabla?

¿Cómo puedo cambiar el tamaño de fuente de mi tabla?

Para mi tesis estoy intentando ajustar el tamaño de fuente de mis tablas en LaTeX. Sin embargo, me cuesta tener un tamaño de fuente scriptize para mi título y para las entradas de mi tabla.

Aquí está mi código. ¡Espero que alguien pueda ayudar!

%begin table
\begin{scriptsize}
\begin{table}[h]
    \centering
    \captionsetup{skip=0.5\baselineskip,size=footnotesize}
     \caption{Test table}
    \label{table:7}
    \begin{tabular}{ l | l }
 \textbf{Entry 1} & \textbf{Entry 2} \\ \cline{1-2}
 Entry 3 & Entry 4 \\ 
\end{tabular}
\end{table}
\end{scriptsize}

Respuesta1

Este código funciona:

\documentclass{article}
\usepackage{caption, array}

\begin{document}

\begin{table}[!htb]
    \centering
    \scriptsize
\setlength{\extrarowheight}{2pt}
    \captionsetup{skip=0.5\baselineskip,size=scriptsize}
     \caption{Test table}
    \label{table:7}
    \begin{tabular}{ l | l }
 \textbf{Entry 1} & \textbf{Entry 2} \\ \cline{1-2}
 Entry 3 & Entry 4 \\
\end{tabular}
\end{table}

\end{document} 

ingrese la descripción de la imagen aquí

información relacionada