图中表格和图片

图中表格和图片

我试图将表格和图像并排放在一个图中。但图像与表格的对齐方式很奇怪,我似乎不知道如何修复它。我尝试将每个图像放入表格的条目中(请参阅下面的代码),但这没有效果。

在此处输入图片描述

\begin{document}

\begin{figure}[h]
\centering
\begin{tabular}{cc}
\begin{tabular}{c|c}
     Factors $(m)$  &Result \\
     \hline
     1  &4.7875\\
     2  &7.4547\\
     3  &10.2273\\
     4  &13.1177\\
     5  &16.1655\\ 
     6  &19.4081\\ 
     7  &22.5762\\ 
     8  &25.8443\\ 
     9  &29.2642\\ 
     10 &32.8306\\ 
     11 &36.3701\\ 
     12 &39.927\\ 
\end{tabular} &\includegraphics[scale=1.6]{"universe".jpg}
\end{tabular}
\caption{Results.}
\label{fig:my_label}
\end{figure}

\end{document}

答案1

借助该adjustbox包和valign=c=t选项可以实现垂直居中或顶部对齐:

\documentclass{article}
\usepackage{graphicx}
\usepackage[export]{adjustbox}

\begin{document}

\begin{figure}[h]
\centering
\begin{tabular}{c|c}
     Factors \textit{(m)}  &Result \\
     \hline
     1  &4.7875\\
     2  &7.4547\\
     3  &10.2273\\
     4  &13.1177\\
     5  &16.1655\\ 
     6  &19.4081\\ 
     7  &22.5762\\ 
     8  &25.8443\\ 
     9  &29.2642\\ 
     10 &32.8306\\ 
     11 &36.3701\\ 
     12 &39.927\\ 
\end{tabular} 
\quad
\includegraphics[width=5cm,valign=c]{example-image}
\caption{Results.}
\label{fig:my_label}
\end{figure}

\bigskip

\begin{figure}[h]
\centering
\begin{tabular}[t]{c|c}
     Factors \textit{(m)}  &Result \\
     \hline
     1  &4.7875\\
     2  &7.4547\\
     3  &10.2273\\
     4  &13.1177\\
     5  &16.1655\\ 
     6  &19.4081\\ 
     7  &22.5762\\ 
     8  &25.8443\\ 
     9  &29.2642\\ 
     10 &32.8306\\ 
     11 &36.3701\\ 
     12 &39.927\\ 
\end{tabular} 
\quad
\includegraphics[width=5cm,valign=t]{example-image}
\caption{Results.}
\label{fig:my_label}
\end{figure}

\end{document}

在此处输入图片描述

我也已替换$(m)$\textit{(m)}

相关内容