Me gustaría insertar una pequeña figura dentro de una celda de columna, pero se desalinea con el resto del texto y crea un espacio adicional vacío por cada fila. ¿Es posible evitar este comportamiento?
\documentclass[sigconf]{acmart}
\begin{document}
\begin{table*}[tb]
\caption{Example Table with Figure}
\begin{tabular}{lllllccc}
\toprule
\textbf{ColA} & \textbf{Description} & Text & Col & Col & Col & Fig & \textbf{Val} \\
\midrule
Test & Explanation & 1 & 2 & 3 & 4 & \includegraphics{figures/fig-tiny.eps}& Val \\\addlinespace
Test & Explanation & 1 & 2 & 3 & 4 & \includegraphics{figures/fig-tiny.eps}& Val \\\addlinespace
\bottomrule
\end{tabular}
\end{table*}
\begin{table*}[tb]
\caption{Example Table without Figure}
\begin{tabular}{lllllccc}
\toprule
\textbf{ColA} & \textbf{Description} & Text & Col & Col & Col & Fig & \textbf{Val} \\
\midrule
Test & Explanation & 1 & 2 & 3 & 4 & Val & Val \\\addlinespace
Test & Explanation & 1 & 2 & 3 & 4 & Val & Val \\\addlinespace
\bottomrule
\end{tabular}
\end{table*}
\end{document}
¿Cómo podría deshacerme de la desalineación vertical y también del espacio extra insertado entre las filas?