Browse Source

Merge remote-tracking branch 'origin/developer' into developer

pull/1/head
Xenia Grünzinger 5 years ago
parent
commit
81d2148aac
2 changed files with 47 additions and 1 deletions
  1. 6
    1
      .gitignore
  2. 41
    0
      latex-files/template.tex

+ 6
- 1
.gitignore View File

@@ -1 +1,6 @@
# Comment no entry
# Config file of brackets-latex plugin with an folder path
.brackets.json

# brackets-latex compile output folders
latex-out/
out/

+ 41
- 0
latex-files/template.tex View File

@@ -0,0 +1,41 @@
% 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}

Loading…
Cancel
Save