移动/偏移图像

移动/偏移图像

我正在尝试使用 来获取 PDF \includepdf,但它没有出现在第一页。我已经尝试了所有可能的选项。无论如何,现在我尝试使用 插入 PDF \includegraphics,但 PDF 看起来离章节名称很远。有没有办法将图像移近上边距?

在此处输入图片描述

可以将图像移近边缘吗?

答案1

report在默认的和章节中book,每个章节标题下方的空间为40pt。您可以删除它以将图像放置在尽可能靠近标题的位置:

在此处输入图片描述

\documentclass{report}

\usepackage{graphicx}

\begin{document}

\chapter*{First chapter}

\vspace{-40pt}

\noindent
\includegraphics[width=\linewidth]{example-image}

\chapter{Second chapter}

\vspace{-40pt}

\noindent
\includegraphics[width=\linewidth]{example-image}

\end{document}

使用长度计算,你可以将图像放置X在与标题有一定距离的位置

\vspace{\dimexpr-40pt+X}

答案2

一种可能性是

\usepackage[absolute,overlay]{textpos}

\begin{textblock*}{13cm}(5cm,3cm) % {block width} (coords)
\includegraphics[width=13cm]{embedded.pdf}
\end{textblock*}

您可以将其放置在页面其他内容的“顶部”(作为覆盖)。

但我想应该有更好的办法,比如让页边距适合。

相关内容