如何将图形定位在页面的最底部

如何将图形定位在页面的最底部

我想在标题页的最底部放置一个矢量图形。图形下方必须没有剩余空间。我已经在互联网上搜索过,但没有成功。我现在尝试的是以下内容:

\vfill
    \begin{figure}[hp!]
        \begin{addmargin}[-20mm]{-15mm} % Scale picture over entire page width
            \includegraphics[width=\linewidth]{picture.pdf}
        \end{addmargin}
    \end{figure}

有人知道怎么做吗?PS:我使用的是 scrartcl 环境和 graphicx 包


这不起作用。图像现在不再横跨整个页面,也不在底部。我没有使用浮动。这是我的图片代码:

\begin{titlepage}
    \thispagestyle{empty}
    \begin{center}
        \vspace*{1cm}
        \Huge
        \textbf{Title text}
        
        \vspace{1.5cm}
        \normalsize
        \textbf{Author}
        
        \begin{figure}[b]
            \begin{addmargin}[-20mm]{-15mm} % Scale the image over the page width
                \includegraphics[width=\linewidth]{picture}
            \end{addmargin}
        \end{figure}
    \end{center}
    \clearpage
\end{titlepage}

答案1

对于不需要浮动的标题页,请使用

\clearpage
\thispagestyle{empty}
Some title text

\vspace*{\fill}
\includegraphics{example-image}
\clearpage

相关内容