为什么 LaTeX 会在图像后创建一个空白页?

为什么 LaTeX 会在图像后创建一个空白页?

我正在使用以下代码:

\documentclass[12pt, a4paper, pdftex]{article}

\usepackage{graphicx, color}

\usepackage[utf8]{inputenc}

\usepackage{indentfirst}

\usepackage [bottom=2cm, top=3cm, left=3cm, right=2cm]{geometry}

\usepackage{pgf,tikz}

\usepackage{epstopdf}

\usepackage[justification=centering]{caption}

\pagestyle{headings}

\begin{document}

\input{./Title.tex}

\newgeometry{left=0cm, right=0cm, top=0cm, bottom=0cm}

\includegraphics[angle=-0.87]{Folha_de_rosto}

\restoregeometry

\tableofcontents

\newpage
\end{document}

当我编译文件时,标题和插入的图像之间会创建一个空白页\includegraphics。当我不使用时\newgeometry,不会发生这种情况。我想要使用的图像具有整个页面的大小。因此,当我尝试在不更改边距的情况下包含图像时,它会移位并且其中的一部分会被剪掉,因为它超出了页面。我不知道还有其他方法可以纠正这种位移。有人知道为什么会发生这种情况吗?除了更改边距之外,还有其他方法可以纠正图像的位移吗?

相关内容