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
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
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- 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