I'm new here.
I want to create a title page. I'm using LyX for writing in LaTeX. I know that I have to write the part for the title page in the preamble. And I want to use a emblem in the title page. I hope someone can tell me how to do this. I received the error: File 'comment.sty' not found. So I hope someone can help me. Please, because I'm new in LaTeX. I tried the following code:
Code: Select all
\documentclass[pdftex,a4paper,12pt]{scrartcl}
%Packages
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{array}
\usepackage{fancyhdr}
\usepackage{natbib}
\usepackage{setspace}
\usepackage{amsmath, amssymb}
\usepackage[ngerman,english]{babel}
\onehalfspacing
% Packages für Bild/Tabellenbeschriftung
\usepackage[bf]{caption2}
\renewcommand{\figurename}{Abb.}
\renewcommand{\tablename}{Tab.}
\renewcommand{\captionfont}{\footnotesize\slshape}
%Seitenränder usw. einstellen
%\usepackage[left=2.0cm, right=1.5cm]{geometry}
\usepackage[left=2cm, right=2cm,bottom=2.5cm,top=2.5cm]{geometry}
\usepackage{comment}
\usepackage{booktabs}
%Kopf- und Fußzeile
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0.3pt}
\renewcommand{\footrulewidth}{0.3pt}
\renewcommand{\contentsname}{Table of Contents}
%\lfoot{Bachelorarbeit}
%\rfoot{Alexander Jethwa}
\cfoot{\thepage}
\begin{document}
%======================================
% TITELSEITE
%======================================
\begin{titlepage}
\begin{center}
\large ...\\
\large ...\\
\large ...\\
\vspace{4cm}
\large{\textbf{Praktikumsbericht\\}}
\Large{\textbf{...}
\vspace{2cm}
\large{\textbf{von \\
Matrikelnr.: }}
\vspace{3cm}
\large{durchgef�hrt in ...\\
Deutsches Krebsforschungszentrum
Heidelberg\\
Arbeitsgruppenleiter: \\
Betreuer: \\
Zeitraum: }
\vspace{3cm}
\end{center}
\rule[0.1cm]{5.6cm}{1pt}\\
\small{Unterschrift Arbeitsgruppenleiter}
\end{titlepage}
\end{document}