如何使用表格将图像定位到更高的位置

如何使用表格将图像定位到更高的位置

我想知道如何将图像定位得更高。

在此处输入图片描述

上图对应于此代码:

\begin{tabular}{m{5.25cm}m{10.5cm}}
\includegraphics[width=48mm]{Screenshot_12.png}
& \begin{center}\textbf{\large{Pricipal Title}}

\footnotesize{Subtitle}

\footnotesize{Another title}

\footnotesize{More things}
\end{center}
\end{tabular}

有什么办法可以将图像放在更高的位置吗?我尝试了所有方法,但都没有用。

答案1

假设您需要将环境内容提升10 毫米,您可以在环境启动之前tabular插入指令。\vspace*{-10mm}tabular

顺便说一句,\large\footnotesize开关,不接受参数。

\documentclass{article}
\usepackage[demo]{graphicx} % remove 'demo' option in real document
\usepackage{array} % for 'm' column type

\begin{document}
\vspace*{-10mm} % <-- new
\noindent
\begin{tabular}{@{} m{5.25cm} m{10.5cm} @{}}
\includegraphics[width=48mm]{Screenshot_12.png}
& \footnotesize
  \begin{center}
    \obeylines % just for this example
    \textbf{\large Principal Title}
    Subtitle
    Another title
    More things
  \end{center}
\end{tabular}
\end{document}

相关内容