I want a second title page with the same layout but different input.
After trying the titling package I got two title pages but the layout did not work anymore and some input was missing.
Any idea what I have to change?
\titlehead{%
{Technische Universität Berlin\\
Institut \\
Lehrstuhl }
\begin{tikzpicture}[remember picture, overlay]
\node [anchor=north east, inner sep=60pt] at (current page.north east)
{\includegraphics[width=3cm]{figures/TU_logo}};
\end{tikzpicture}}
\subject{Masterarbeit}
\title{TITLE german}
\author{\large{name} \\ \small{Matrikel Nr.: 11111} }
\date{\small{\textit{\today}}}
\publishers{
\small{1. Gutachter: Prof. name} \\
\small{2. Gutachter: Dr. name}\\
\small{1. Betreuer: Dr. name}\\
\small{2. Betreuer: Dipl.-Ing. name}
}
\maketitle %% Titelseite erzeugen
\titlehead{%
{Techncal University Berlin\\
Institute \\
Chair }
\begin{tikzpicture}[remember picture, overlay]
\node [anchor=north east, inner sep=60pt] at (current page.north east)
{\includegraphics[width=3cm]{figures/TU_logo}};
\end{tikzpicture}}
\subject{Master's Thesis}
\title{TITLE english}
\author{\large{name} \\ \small{Student Nr.: 11111} }
\date{\small{\textit{\today}}}
\publishers{
\small{\nth{1} Referee: name} \\
\small{\nth{2} Referee: name}\\
\small{\nth{1} Supervisor: name}\\
\small{\nth{2} Supervisor: name}
}
\maketitle %% Titelseite erzeugen
EDIT: In case it is caused by another package I use, here are all loaded packages:
\usepackage[english,ngerman]{babel} % supported languages
\usepackage[utf8]{inputenc} % Umlaute
\usepackage{listings} %For R code
\usepackage[usenames,dvipsnames]{color} %colour setting in listing
\usepackage{amsmath} % for equation
\usepackage{amssymb} % for checkmarks
\usepackage{mathtools} % math stuff
\usepackage[sticky-per]{siunitx} % units
\usepackage{float} % placement of floats
\usepackage{graphicx} %inluding pictures
\usepackage[super]{nth} % 5th of...
\usepackage{caption} %captions for figures
\usepackage{subcaption} % Arrange many figures as one
\usepackage{array} %Table settings
\usepackage{fancyhdr} %fancy page styles
\usepackage{footmisc} % footnote options
\usepackage{enumerate} %numerated lists
\usepackage{tikz} %Add logo in upper right corner of title page
\usepackage{titling} %enables second titlepage
german/englishthe titlepages look alike – Oct 19 '14 at 08:57\usepackage{titling}-- you don't need that package at all -- it will shown then both title pages (one after another one, each with the logo) – Oct 21 '14 at 02:21\titleheadfrom? It sounds like you are using a non-standard class or something which customises\maketitle. In that case, loadingtitlingwill overwrite that configuration. But it is impossible to say without more information. We need a minimal working example (MWE). EDIT: I see your title says Koma. You are riding rough shod over its approach and would be better advised to use its facilities rather than e.g.fancyhdr. If you post an MWE, we could understand better, though. – cfr Nov 20 '14 at 00:20