Graphics, Figures & Tables ⇒ Inserting an image
-
- Posts: 1
- Joined: Fri Nov 20, 2015 5:39 pm
Inserting an image
in the background, so that the text is simply written over it as if it was a blank page. Is it possible?
www.google.com
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Inserting an image
welcome to the forum!
There are several possibilities. An easy one is using the background package. Here's an example from my LaTeX Cookbook:
Code: Select all
\documentclass{article}
\usepackage{background}
\usepackage{blindtext}
\backgroundsetup{scale = 1, angle = 0, opacity = 0.2,
contents = {\includegraphics[width = \paperwidth,
height = \paperheight, keepaspectratio]
{/usr/local/texlive/2014/texmf-dist/doc/latex/l2picfaq/ctanlion.pdf}}}
% Adjust filename and path to match your own image
\begin{document}
\Blinddocument
\end{document}
Stefan