1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
% !TEX root = BuildWithGBP.nw
% There shouldn't be any page number, no header or footer
\thispagestyle{empty}
% Starting the title page.
\begin{titlepage}
% Debian-Logo
\begin{figure}
\centering{}
\includegraphics[width=20em,height=60ex]{Pictures/Debian-OpenLogo.pdf}
\par{}
\end{figure}
% It is followed by the title image. This should be centered
\centering{}
% Also the other text should be centered.
\vspace{1cm}
{\huge\bfseries \texttt{Debian}-Pakete bauen\par}
{\Large\bfseries mit\par}
\vspace{0.4cm}
{\huge\bfseries Git-Buildpackage}
% \maketitle manually
\vfill
{\Large\itshape Dipl.-Ing. Mechtilde Stehmann\par}
und\par
{\Large\itshape Dr. Michael Stehmann}
\vfill
{\large \today\par}
%\pagestyle{noweb}
\newpage
\thispagestyle{empty}
\vspace*{10cm}
\raggedright
Deutsche Version:
\vspace*{0.5cm}
\quad
\qrcode[height=1in]{https://ddp-team.pages.debian.net/dpb/BuildWithGBP.pdf}
https://ddp-team.pages.debian.net/dpb/BuildWithGBP.pdf
\vspace*{2cm}
Englische Version:
\vspace*{0.5cm}
\quad
\qrcode[height=1in]{https://ddp-team.pages.debian.net/dpb/en_US/BuildWithGBP.pdf}
https://ddp-team.pages.debian.net/dpb/en\_US/BuildWithGBP.pdf
\end{titlepage}
%\cleardoublepage{}
% For getting an empty page after the title page.
% TableOfContent
\renewcommand{\contentsname}{Inhalt}
\pagenumbering{Roman}
\pagestyle{scrheadings}
%\markboth{\today}{\today}
\automark[]{chapter}
\ihead{\chaptermark}
\ohead{\today}
%\chead{\chapter}
%\renewcommand\chaptermark[1]{\markboth{#1}{}}
\singlespacing
\tableofcontents
% How to include special characters (UTF-8 code)
% \DeclareUnicodeCharacter{21A9} or{21B2} or {21B5}
% To make the text start on the right/odd side.
\cleardoublepage
\pagenumbering{arabic}
\setcounter{page}{1}
|