% Positioning of images within LaTex really sucks. I only do it to add them to my list of figures. In the end you should place them with InDesign, Illustrator or ffs Paint. Don't do it with LaTex.
% Image with Caption
\begin{SCfigure}[0.5][h]
\includegraphics[width=0.6\textwidth]{filename} % no need for an extension
\caption[Text in bib]{Caption}
\end{SCfigure}
% Enable absolut positioning of images
\usepackage[absolute]{textpos}
% Image with position=absolute and size=cover, no need to do this at any time but here you go (requires that line above)
\begin{textblock*}{\paperwidth}(0mm,0mm)
\begin{figure}
\noindent\includegraphics[height=\paperheight]{filename}
\caption[Text in bib]{Caption}
\end{figure}
\end{textblock*}
% Note: Images can not be included in multicols
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.