Added ITS

This commit is contained in:
2018-02-11 22:01:13 +01:00
parent bf5a35c049
commit b627611a6c
2 changed files with 97 additions and 0 deletions

97
its/Handout.tex Normal file
View File

@@ -0,0 +1,97 @@
\documentclass[a4paper,12pt,fleqn]{article}
\usepackage[latin1]{inputenc}
\usepackage{ae,aecompl}
\usepackage[T1]{fontenc}
\usepackage{ngerman}
\usepackage[left=2cm,right=2cm,top=2cm,bottom=0cm,includeheadfoot]{geometry}
\usepackage{fleqn}
\usepackage{ulem}
\usepackage{amssymb}
\usepackage{scrpage2}
\usepackage{graphicx}
\author{Janek Schoffit} %F<>r Metadaten
\title{ITS} %F<>r Metadaten
\date{\today} %Das Datum; \today f<>r das heutige Datum
\hyphenation{Vieta}
\setlength{\tabcolsep}{5pt}
\renewcommand{\arraystretch}{1,25}
\renewcommand*\contentsname{Gliederung}
\newcommand{\executeiffilenewer}[3]{%
\ifnum\pdfstrcmp{\pdffilemoddate{#1}}%
{\pdffilemoddate{#2}}>0%
{\immediate\write18{#3}}\fi%
}
\newcommand{\includesvg}[1]{%
\executeiffilenewer{#1.svg}{#1.pdf}%
{inkscape -z -D --file=#1.svg %
--export-pdf=#1.pdf --export-latex}%
\input{#1.pdf_tex}%
}
%\linespread{0.84}
%Wurzeln richtig mit Endhaken darstellen
\let\oldsqrt\sqrt
\def\sqrt{\mathpalette\DHLhksqrt}
\def\DHLhksqrt#1#2{\setbox0=\hbox{$#1\oldsqrt{#2\,}$}\dimen0=\ht0
\advance\dimen0-0.3\ht0
%0.3 ist das Ma<4D> f<>r die Hakenl<6E>nge, relativ zum Inhalt der Wurzel
\setbox2=\hbox{\vrule height\ht0 depth -\dimen0}%
{\box0\lower0.4pt\box2}}
%Anfang
\begin{document}
\pagestyle{scrheadings}
\ihead{Janek Schoffit}
\ohead{\today} %\today f<>r das heutige Datum
\cfoot{\pagemark} %Seitenzahlen \ofoot f<>r rechts
\begin{tabular}{l}
% \toprule
\LARGE \textbf{ITS}\\ %\midrule
\end{tabular}
%Gliederung. Auskommentieren zum deaktivieren
%Zum kompletten aktualisieren eines Inhaltsverzeichnis
%sind bis zu 3 Compile Vorg<72>nge n<>tig
\tableofcontents
\newpage
%Anfang Inhalt
\section{Kapitel}
Ein Text
\subsection{Unterkapitel}
Ein weiterer Text
\section{Beispiel f<>r eine Tabelle}
\begin{table}[h!]
\centering
\caption{Eine 5-Spaltige Tabelle}
\label{tab:table1} %Label f<>r Sprungmarken
\begin{tabular}{l|c|c|c|r|}
& A & B & C & D\\
\hline
1 & x & --- & & r\\
\hline
2& x & --- & & r\\
\hline
3 & x & --- & & r\\
\hline
4 & x & --- & & r\\
\hline
5 & x & --- & & r\\
\hline
6 & x & --- & & r\\
\end{tabular}
\end{table}
\end{document}