Graphics, Figures & Tablesgraphics outside normal margins

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
adamwho
Posts: 2
Joined: Tue Mar 08, 2011 5:04 am

graphics outside normal margins

Post by adamwho »

I am working on resume templates.

I would like to place a QR code in the very upper right corner but that would violate the margins (1 in. all the way around) and I don't want to change the margins because everything is centered nicely.

Do you have an suggestions for a novice?

Recommended reading 2024:

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

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

adamwho
Posts: 2
Joined: Tue Mar 08, 2011 5:04 am

Re: graphics outside normal margins

Post by adamwho »

Well I figured it out.

I used
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{fancyhdr}

% QR Code in upper right corner
\lhead{}
\chead{}
\rhead{\setlength{\unitlength}{1mm}
\begin{picture}(0,0)
\put(2,-8){\includegraphics[width=38mm]{AdamsQRCode.png}}
\end{picture}}
\renewcommand{\headrulewidth}{0pt}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

It looks great.
Post Reply