Instead of trying to convert these (extremely ugly) pages to latexLaTeX I would suggest the following:
- Use Word to fill them out (or whatever other tool they are provided for)
- Export as PDF (or use a print-to-pdf driver if the tool does not support exporting as PDF)
- Use the
pdfpagespackage to include those pages at the beginning of your LaTeX document - Build with
pdflatexpdflatexorlualatex
Example:
% select paper type to match your pdf, I am assuming A4 as h_da is in Germany
\documentclass[a4paper]{article}
% include the pdfpages package
\usepackage{pdfpages}
\begin{document}
% use \includepdf at the beginning of your document.
% pages=- causes all pages to be included.
% the filename must not contain spaces.
\includepdf[pages=-]{yourExport.pdf}
\end{document}