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

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

User avatar
Stefan Kottwitz
Site Admin
Posts: 10348
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 1889 times
You need to compile two times until the image appears on the background.

Stefan
LaTeX.org admin
Post Reply