Graphics, Figures & Tableslogo from left to right

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
latexinthesky
Posts: 7
Joined: Mon Feb 04, 2013 10:28 am

logo from left to right

Post by latexinthesky »

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?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

logo from left to right

Post by cgnieder »

Can you please post a Infominimal working example demonstrating what you mean? It is a bit unclear as it stands now.

Regards
site moderator & package author
User avatar
Stefan Kottwitz
Site Admin
Posts: 10324
Joined: Mon Mar 10, 2008 9:44 pm

logo from left to right

Post by Stefan Kottwitz »

There are packages for absolute positioning, also \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}
Stefan
LaTeX.org admin
latexinthesky
Posts: 7
Joined: Mon Feb 04, 2013 10:28 am

Re: logo from left to right

Post by latexinthesky »

TY :)
Post Reply