I do have a little problem. I like to make a frontpage for my thesis. In the code below I do have everything I need for that. For some reason I cannot get it on one page. I hope you see what I mean. Is there someone who may help me? I do not get it. Thanks a lot!!!
\documentclass[a4paper, fontsize=11pt]{scrbook}
\usepackage{geometry} \geometry{a4paper, top=25mm, left=25mm, right=25mm, bottom=25mm, headsep=10mm, footskip= 10mm} % Seitenlayout
\addtokomafont{disposition}{\rmfamily} % Inhaltsverzeichnis in Times
\usepackage[ngerman]{babel} % Deutsche Sprachanpassung
\usepackage[T1]{fontenc} % Silbentrennung bei Sonderzeichen
\usepackage[latin1]{inputenc} % Direkte Angabe von Umlauten im Dokument
\usepackage{csquotes} % Apostroph-Zeichen
\usepackage[onehalfspacing]{setspace} % Zeilenabstand
\usepackage{amsmath} % Mathematik
\usepackage{amssymb} % Mathematik
\usepackage{multirow,array} % Auszahlungsmatrix
\usepackage{arydshln} % vertikale und horizontale Linien in Tabelle
\dashlinegap=1pt % gestrichelte Linie in Tabelle
\usepackage{tikz} % Auszahlungsmatrix
\usepackage{acronym} % Sonstiges
\usepackage{anyfontsize} % Sonstiges
\usepackage{float} % Positionierung von Grafiken
\usepackage{caption} % Abbildungen/Tabellen beschriften
\captionsetup[figure]{skip=15pt} % Caption weiter unter setzen
\title{\textbf{\\Gestaltung einer Frontpage}}
\author{\\\\Seminararbeit\\am\\ Lehrstuhl für Mikroökonomie und
Empirische Wirtschaftsforschung\\Wirtschafts- und Sozialwissenschaftliche
Fakultät\\Universität Muster\\\\\\\\\\\\
vorgelegt von\\stud. rer. oec. Max Musterman\\aus Musterheim\\3. Fachsemester}
\date{}
\begin{document}
\pagenumbering{roman}
\newgeometry{bottom= 30mm, left=25mm, right=25mm}
\maketitle
\begin{figure}[b]
\begin{tikzpicture}[xscale= 16.4pt, yscale=5pt]
\draw[-] (0, -0.5) -- (1,-0.5);
\node at (0, -0.6)[right] {Seminarleitung: Prof. Dr. XY};
\node at (0, -0.7)[right] {Abgabetermin: 25. Juni 2016};
\node at (0, -0.8)[right] {Herbstsemester 2015};
\node at (1, -0.6)[left] {Anschrift des Verfassers:};
\node at (1, -0.7)[left] {Musterstrasse 1};
\node at (1, -0.8)[left] {1234 Musterhausen};
\end{tikzpicture}
\end{figure}
\end{document}


\maketitle) finishes the page completely and starts a new one. Aside, using a figure is not what you want. And why using TikZ for a very simple list/table? And why is this question labeled {tikz-pgf}? – Johannes_B Jun 25 '16 at 19:29tikzafter the title ;-) Isn't that justification enough? ;-) – Jun 25 '16 at 20:32