LyX ⇒ Background Image on first Page
-
- Posts: 42
- Joined: Fri Jul 22, 2011 12:26 am
Background Image on first Page
I mean that without writing any LaTeX code in the ERT Box, how to add a image file as background on the cover page in my document. Thank you!
Last edited by EigenGoofy on Thu Nov 03, 2011 9:03 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Background Image on first Page
Try this!
Code: Select all
\usepackage{graphicx}
\usepackage[firstpage]{draftwatermark}
\SetWatermarkLightness{0.9}
\SetWatermarkText{\includegraphics[angle=-45]{myimage}
-
- Posts: 42
- Joined: Fri Jul 22, 2011 12:26 am
Background Image on first Page
Thank you very much!
Actually, I put the following code in the preamble. And it seems also works.
Actually, I put the following code in the preamble. And it seems also works.
Code: Select all
\usepackage{graphicx}
\usepackage{watermark}
\thiswatermark{\centering \put(112,-550){\includegraphics[scale=0.9]{my_image.png}} }