|
1234567891011121314151617181920212223242526272829303132333435363738394041 |
- % Preamble
- % ---
- \documentclass[11pt]{article}
-
- % Packages
- % ---
- \usepackage{geometry} % Provide the ability to setup a custom page configuration
- \geometry{a4paper, left=20mm, right=20mm, top=25mm, bottom=25mm, headsep=10mm, footskip=10mm} % Set page appearance
- \usepackage[utf8]{inputenc} % Unicode support (Umlaute etc.)
- \usepackage[ngerman]{babel} % Change hyphenation rules
- \renewcommand{\familydefault}{\sfdefault} % Change default font to sans serif
- \usepackage{tgadventor} % Change fontfamily to Tex Gyre Heros (sans serif)
- \usepackage[hidelinks]{hyperref} % Add a link to your document
- \usepackage[dvipsnames]{xcolor} % Provide font coloring
- \usepackage{graphicx} % Add pictures to your document
- \usepackage{pdfpages} % Allow to include pdf pages
- \usepackage{amsmath} % Advanced math typesetting
- %\usepackage{amsfonts} % Advanced font typesetting
- %\usepackage{amssymb} % Advanced symoblic typesetting
-
- % Required for \maketitle{}
- % ---
- \author{Erik Römmelt} % The authors name
- \title{Dokumentation 10.Treffen OMApp} % The title of the document
- \date{12. Dezember 2018} % The date int the title e.g. of the meeting
-
- % Document Body
- % ---
- \begin{document}
- \maketitle % Create Title page in document
- %\tableofcontents % Add table of contents to document
- %\newpage % Page break after table of contents (Inhaltsverzeichnis)
-
- \section{Name of heading}
- Some text.
-
- \section{Next heading}
-
-
- %\includepdf[pages=-, scale=0.8, frame=true, pagecommand=\thispagestyle{plain}]{Filename} % Include PDF file into document
- \end{document}
|