I haven't used LaTeX for a while now, and in my document I put a image as my first page, however if I do \newpage and write something new, it gets moved to the first page, instead of the picture:
\documentclass[a4paper]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage[ansinew]{inputenc}
\usepackage[pdftex]{graphicx}
\usepackage{atbegshi}
\usepackage{wasysym}
\setlength{\parindent}{0pt}
\pagenumbering{gobble}
\begin{document}
\begin{figure}
\centerline{\includegraphics[scale=0.9]{Bilder/Deckblatt.png}}
\end{figure}
\end{document}
\graphicspathinstead of absolute paths, apparently it was taking more time to compile... :-) – hola Jun 07 '19 at 23:18graphicxwill generally correctly resolve the extension, selecting a good option, depending upon the TeX engine in use (see: https://tex.stackexchange.com/a/1075/134641). It is better to allow this to occur automatically, rather than specify it manually, unless one has a good reason to do so.It is possible for
– Coby Viner Jun 08 '19 at 00:00\graphicspathto increase compilation time, but it should not be substantial and is worthwhile, IMO. This post might be useful, in this regard: https://tex.stackexchange.com/a/472938/134641