Graphics, Figures & TablesInserting an image

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
LindaTanner
Posts: 1
Joined: Fri Nov 20, 2015 5:39 pm

Inserting an image

Post by LindaTanner »

I have a regular page full of text and I don't want to change the text flow. I want to put 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
Last edited by LindaTanner on Fri Dec 11, 2015 12:54 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

Post by Stefan Kottwitz »

Hi Linda,

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}
background.png
background.png (103.41 KiB) Viewed 1849 times
You need to compile two times until the image appears on the background.

Stefan
LaTeX.org admin
Post Reply