在表格單元格內插入圖形對齊問題

在表格單元格內插入圖形對齊問題

我想在列單元格內插入一個小數字,但它與文字的其餘部分不一致,並為每行創建一個空的額外空間。是否可以避免這種行為?

\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}

在此輸入影像描述

我該如何擺脫垂直錯位以及在行之間插入的額外空間?

相關內容