titlepage.tex 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. % Vorlage aus http://sdqweb.ipd.kit.edu/wiki/Dokumentvorlagen
  2. %% titlepage.tex
  3. %%
  4. % coordinates for the bg shape on the titlepage
  5. \newcommand{\diameter}{20}
  6. \newcommand{\xone}{-15}
  7. \newcommand{\xtwo}{160}
  8. \newcommand{\yone}{15}
  9. \newcommand{\ytwo}{-253}
  10. \begin{titlepage}
  11. % bg shape
  12. \begin{tikzpicture}[overlay]
  13. \draw[color=gray]
  14. (\xone mm, \yone mm)
  15. -- (\xtwo mm, \yone mm)
  16. arc (90:0:\diameter pt)
  17. -- (\xtwo mm + \diameter pt , \ytwo mm)
  18. -- (\xone mm + \diameter pt , \ytwo mm)
  19. arc (270:180:\diameter pt)
  20. -- (\xone mm, \yone mm);
  21. \end{tikzpicture}
  22. \begin{textblock}{10}[0,0](4,2.5)
  23. \includegraphics[width=.3\textwidth]{logos/KITLogo_RGB.pdf}
  24. \hspace{8cm}
  25. \end{textblock}
  26. \changefont{phv}{m}{n} % helvetica
  27. \vspace*{3.5cm}
  28. \begin{center}
  29. \vspace*{3cm}
  30. \huge{Abschlussreflexion}\\
  31. \vspace*{1cm}
  32. \Large{
  33. \iflanguage{english}{At the Department of Informatics}
  34. {Tutorenschulung}
  35. }
  36. \end{center}
  37. \vspace*{1cm}
  38. \Large{
  39. \begin{center}
  40. \begin{tabularx}{\textwidth}{@{}llllX}
  41. Name, Vorname & \Nachname, \Vorname\\
  42. Matrikelnummer & \Matrikelnummer \\
  43. Email & \Email \\
  44. Titel & \TutoriumTitle\\
  45. Institut & \Institut\\
  46. Studienfach & \Studienfach\\
  47. Datum & \Datum\\
  48. \end{tabularx}
  49. \end{center}
  50. }
  51. \begin{textblock}{10}[0,0](4,16.8)
  52. \tiny{
  53. \iflanguage{english}
  54. {KIT -- University of the State of Baden-Wuerttemberg and National Research Center of the Helmholtz Association}
  55. {KIT -- Universit\"at des Landes Baden-W\"urttemberg und nationales Forschungszentrum in der Helmholtz-Gemeinschaft}
  56. }
  57. \end{textblock}
  58. \begin{textblock}{10}[0,0](14,16.75)
  59. \large{
  60. \textbf{www.kit.edu}
  61. }
  62. \end{textblock}
  63. \end{titlepage}