I have the following code to show a picture around by some textes.
\documentclass{article}
\usepackage{wrapfig}
\usepackage{lipsum}
\begin{document}
\begin{wrapfigure}{r}{4cm}
\begin{center}
\includegraphics[width=0.2\textwidth]{mickey}
\end{center}
\end{wrapfigure}
\lipsum[1-4]
\end{document}
The problem is that I want to put the photo on (exact) top right of the page. So I want to remove the blank marge above the photo and on the right of the photo. Also I feel that the blank marge below the photo is too much.
Does anyone know how to amend the code?



centerenvironment. Instead, use\centering. – Werner Feb 25 '15 at 05:18\begin{wrapfigure}{r}{4cm}, but is there a easy way to make sure that it is exactly right justified with the page? – SoftTimur Feb 25 '15 at 05:25width=\linewidth. – Werner Feb 25 '15 at 05:28