LyX ⇒ Background Image on first Page
-
- Posts: 42
- Joined: Fri Jul 22, 2011 12:26 am
Background Image on first Page
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
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Background Image on first Page
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
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}} }