I would like to place a series of photos (image_1.png,...,image_54.png) from a file named flip_book_animation, in the upper right corner of every page starting from the seventh page onwards. The document is written in greek. I have read several posts but I can't find something that finally works. The code I use doesn't seem to work either. Instead of the image it shows 'scale=0.5', which I use in the code, translated in the greek language. Some code I use:
\documentclass[a5paper,pagesize,12pt,bibtotoc,pointlessnumbers,
normalheadings,twoside=false,DIV=9]{scrbook}
\usepackage[english,greek]{babel}
\usepackage{ucs}
\usepackage[utf8x]{inputenc}
\usepackage{kerkis}
\usepackage{verbatim}
\usepackage{everypage}
\usepackage{graphicx}
\usepackage{fancyhdr}
\usepackage{scalefnt}
\usepackage{flipbook}
\fancyhead[R]{
\setlength{\unitlength}{0.5cm}
\begin{picture}(1,1.6)
\put(0,0){
\fbImageF*{./Documents/latex/Book_Olympios/flip_book_animation/image_}{png}{scale=0.5}
}
\end{picture}
}
and the result is

Any feedback is highly appreciated! Thanks





\documentclass{...}, the required\usepackage's,\begin{document}, and\end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem. – Adam Liter Dec 08 '14 at 20:37graphicx; How can I add text in the top right corner of a page without usingfancyhdr; What are the ways to position things absolutely on the page? The last entry is your best starting point (and also might be a duplicate for this post, if not any other). – Werner Dec 08 '14 at 20:39