\raisebox 是 LaTeX 中的一个命令,用于提升(或降低)插入的内容(如文本、图像等)的位置。该命令可以用于调整垂直位置,使内容相对于周围内容上下移动。
语法如下:
\raisebox{<distance>}[<height>][<depth>]{<content>}
其中:
- <distance> 表示要上升(正值)或下降(负值)的距离。
- <height> 表示内容的高度。
- <depth> 表示内容的深度。
- <content> 是要调整位置的内容。
例如,\raisebox{2pt}{内容} 将内容向上移动 2 点。
可以根据需要使用 \raisebox 命令来调整文本或图像的垂直位置,使其与周围内容对齐或居中。
\begin{table}[thb] \centering\caption{A table with images at the left. Images can be useful to illustrate different setups.}\label{tab:res_synth_mirco_baseline}\includegraphics[width=0.088\textwidth,height=0.085\textwidth]{example-image-a}\includegraphics[width=0.088\textwidth,height=0.085\textwidth]{example-image-b}\includegraphics[width=0.088\textwidth,height=0.085\textwidth]{example-image-c}\raisebox{0.9\height}{\resizebox{0.19\textwidth}{!}{\large\begin{tabular}{ccc}\topruleType & Range & MAE \\\midrule(a) & 144$\times$144 & 4.21 \\(b) & 37$\times$37 & 10.90 \\(c) & 22$\times$22 & 18.72 \\\bottomrule\end{tabular}}}\\\vspace{-0.2em}\makebox[0.09\textwidth]{\footnotesize (a)}\makebox[0.09\textwidth]{\footnotesize (b)}\makebox[0.09\textwidth]{\footnotesize (c)}\makebox[0.19\textwidth]{\footnotesize (d) Normal estimation}\\
\end{table}