Hi everyone am just a beginner on latex, can anyone please show me, how to put a picture on the top right or top left and on bottom left and bottom right only thanks.
Asked
Active
Viewed 4,466 times
1 Answers
1
One possibility ist using tikz with the current page node.
\documentclass{scrartcl}
\usepackage{tikz}
\usepackage{mwe}% example pictures
\begin{document}
\thispagestyle{empty}
\tikz[remember picture,overlay]
\node[anchor=north east,inner sep=0pt] at (current page.north east)
{\includegraphics[height=2cm]{example-image}};
\end{document}
Note that you have to run twice.

esdd
- 85,675
textposor do it withtikz(see Absolute Positioning in the manual). – Johannes_B Jul 03 '14 at 12:24