Graphics, Figures & Tables ⇒ graphics outside normal margins
graphics outside normal margins
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?
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
Re: graphics outside normal margins
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.