答案1
将图像放入figure
环境中意味着允许其四处浮动;它将被放置在 TeX 认为合适的任何位置。但您希望将其放置在固定位置。
\documentclass[12pt]{article}
\usepackage{graphicx}
\begin{document}
\hspace*{\fill}{\Huge\bfseries\sffamily Example Image}\hfill
\makebox[0cm][r]{\includegraphics[height=2cm]{example-image}}%
\bigskip
\section*{Personal Data}
\end{document}
将图片放入\makebox[0cm][r]{...}
会移除其宽度,因此不会影响标题的居中。此外,r
还会将其与右边框齐平。
要使标题与图像垂直居中,您可以使用 将图像相对于基线降低\raisebox
。
\makebox[0cm][r]{\raisebox{-4ex}{\includegraphics[height=2cm]{example-image}}}%