使图像正好覆盖页面的上半部分

使图像正好覆盖页面的上半部分

问题:

尝试将图像放入页面的上半部分但没有成功。

最小工作示例:

\documentclass[export]{article}
\usepackage{graphicx}

\graphicspath{{./figures/},{./chapters/}}

\begin{document}

\thispagestyle{empty}

\begin{figure}[!t]
    \centering
    \includegraphics[width=\paperwidth]{chapter1.jpg}
    \label{fig:fig1}
\end{figure}

\end{document}

输出:

在此处输入图片描述

期望输出:

使图像从左上角开始精确覆盖页面的上半部分。

答案1

有几个包允许使用绝对定位(看有哪些方法可以将内容绝对定位在页面上?或其相关问题)

以下是用 制作的解决方案TikZ。需要两次编译才能获得正确的结果。

\documentclass{article}
\usepackage{tikz}

\begin{document}

\thispagestyle{empty}

\begin{tikzpicture}[remember picture, overlay]
\node[anchor=north west, inner sep=0pt] at (current page.north west) {\includegraphics[width=\paperwidth, height=.5\paperheight]{example-image}};
\end{tikzpicture}

\end{document}

在此处输入图片描述

相关内容