我正在寻找在乳胶中做这样的事情,我尝试了不同的包,如包装图形和包装表,但我似乎无法让它完全工作。
我想做一些类似的事情。
因此基本上左边有一张图片,右边有一表格,它们彼此居中。
我目前有以下代码:
\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}