열 셀 안에 작은 그림을 삽입하고 싶지만 나머지 텍스트와 잘못 정렬되어 각 행마다 빈 추가 공간이 생성됩니다. 이 동작을 방지하는 것이 가능합니까?
\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}
수직 정렬 불량과 행 사이에 삽입된 추가 공간을 어떻게 제거할 수 있습니까?