如何将图片包裹到表格中

如何将图片包裹到表格中

我正在寻找在乳胶中做这样的事情,我尝试了不同的包,如包装图形和包装表,但我似乎无法让它完全工作。

我想做一些类似的事情。

在此处输入图片描述

因此基本上左边有一张图片,右边有一表格,它们彼此居中。

我目前有以下代码:

\begin{table}
\adjustimage{width=3cm,valign=c}{Illustrations/QFN-40-Backside}\quad%
\caption{Table for test} \label{fig:test}
\begin{tabular}{ll}
    Model & blurred \\
    $V_\mathrm{in}$ & blurred \\
    $V_\mathrm{out}$ & blurred \\
    $I_{\max}$ & blurred \\
\end{tabular}

\茶几}

显示如下 在此处输入图片描述

先感谢您。

答案1

看看以下解决方案是否可以接受:

\documentclass{article}
\usepackage[demo]{adjustbox}
\usepackage[skip=1ex]{caption}

\begin{document}
    \begin{table}[htb]
    \centering
\caption{Table for test} 
    \label{fig:test}
\begin{tabular}{cl}
\adjustimage{width=3cm,valign=c}{Illustrations/QFN-40-Backside}
    &   \begin{tabular}{@{} ll @{} }
        Model & blurred                 \\
        $V_\mathrm{in}$     & blurred   \\
        $V_\mathrm{out}$    & blurred   \\
        $I_{\max}$          & blurred 
        \end{tabular}
\end{tabular}
    \end{table}
\end{document}

在此处输入图片描述

相关内容