如何使用图像作为页面背景

如何使用图像作为页面背景

我有一个 png 图像,我想将其集成到乳胶传单中。

我想把这张图片放在页面角落作为背景。但我无法让它超出边距。

这是我的代码:

\documentclass[10pt,foldmark,notumble]{leaflet}
\renewcommand*\foldmarkrule{.3mm}
\renewcommand*\foldmarklength{5mm}

\usepackage{polyglossia}
\setmainlanguage{english}
\setmainfont{Times New Roman}% <-- For English: Latin script here!

\usepackage{lipsum}
\usepackage{comment}
\usepackage{float}

\newcommand*\defaultmarker{\textsuperscript\textasteriskcentered}

\CutLine*{1}% Dotted line without scissors
\CutLine*{6}% Dotted line without scissors

\begin{document}
    
    %\begin{center}
    \vspace*{-0.8in}
    \hspace*{-0.8in}
    
    \begin{figure}[H]
        {\includegraphics{drawing.pdf}} % 
    \end{figure}
    
    This is the title
    

    \section{Abstract}
    
    This is the abstract which is good.
    \section{Background}
    
    \lipsum[2-4]
    
    \section{Objectives}
    
    \lipsum[5-7]
    
    \section{Techniques}
    
    \lipsum[8-10]
    
    \section{Results}
    
    \lipsum[11]
    
    % \includegraphics[width=0.9\columnwidth]{esempio}
    
    \lipsum[12-13]
    
    \section{Conclusions}
    
    \lipsum[14]
    
    \section{Acknowledgements}
    
    \lipsum[1]
    
    \section{Contact details}
    
    Nome Cognome {\tt [email protected]}
    
\end{document}

是否也可以在图像上书写?(即将其视为背景?)

在此处输入图片描述

在此处输入图片描述

答案1

您可以使用

\usepackage{background}

然后使用以下方法调整页面上背景图像的对齐方式

\backgroundsetup{
  scale=1,
  opacity=0.5,
  angle=0,
  contents={\includegraphics[width=\paperwidth,height=\paperheight]{background_image.jpg}}
}

然后在主文档中使用它

\begin{document}
\BgThispage
...
\end{document}

相关内容