制作超大图片封面页码

制作超大图片封面页码

有时我会有一些图像延伸到底部边距以下,因为我想textwidth在保留图像比例的同时使用整个图像。发生这种情况时,是否可以让图像覆盖页码?目前页码显示在图像上方:

\documentclass{article}
\usepackage{float}
\usepackage{graphicx}
\begin{document}
\begin{figure}[H]
    \includegraphics[width=\textwidth, height=23cm]{example-image-a}
\end{figure}
\end{document}

答案1

您有以下几种选择:

  1. 用于\thispagestyle{empty}删除页码的打印。

  2. 使用eso-picF(或类似的东西)在矿石轮中插入超大图像G,从而覆盖页码;这是一个例子:

    在此处输入图片描述

    \documentclass{article}
    
    \usepackage{graphicx,eso-pic}
    
    \begin{document}
    
    \mbox{}% Add something on the page
    \AddToShipoutPictureFG*{%
      \AtTextUpperLeft{%
        \raisebox{-\height}{\includegraphics[width=\textwidth, height=23cm]{example-image-a}}%
      }%
    }%
    
    \clearpage % Move to next page
    
    The rest of your document goes here \ldots
    
    \end{document}
    

无论选择哪种方式,如果figure放置的Here 不适合当前页面,它都会溢出到下一页,除非您调整高度以适合文本块。

相关内容