Graphics, Figures & Tables ⇒ logo from left to right
-
- Posts: 7
- Joined: Mon Feb 04, 2013 10:28 am
logo from left to right
At work we have a company logo and I like to ad this logo from left to right in the front page. How can I let the image(logo) start at the left side of the paper?
NEW: TikZ book now 40% off at Amazon.com for a short time.
logo from left to right
Can you please post a
minimal working example demonstrating what you mean? It is a bit unclear as it stands now.
Regards

Regards
site moderator & package author
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
logo from left to right
There are packages for absolute positioning, also
Stefan
\hspace
with a negative value could help. Here's a way with \makebox
:Code: Select all
\documentclass[12pt,a4paper]{article}
\usepackage[demo]{graphicx}
\begin{document}
Here is the logo:
{\centering
\makebox[0pt][c]{\includegraphics[width=\paperwidth]{logo}}\par}
\end{document}
LaTeX.org admin