Skip to content
Snippets Groups Projects
Commit 0b3d3ac7 authored by Jan Wille's avatar Jan Wille
Browse files

erster funktionaler test

parent f9baa780
Branches
Tags
1 merge request!2make Master runable
*.synctex.*
\ No newline at end of file
# Der Plots-Ordner # Der Plots-Ordner
Ein Ordner für alle Plots und Graphen. Dieser Existiert vor allem, da die erstellung mit PGF-Plots empfohlen wird. Dies erfordert eine eigene .tex Ein Ordner für alle Plots und Graphen. Dieser Existiert vor allem, da die Erstellung mit PGF-Plots empfohlen wird. Dies erfordert eine eigene .tex
Datei für jeden Plot, spart aber Compilezeit, da nicht jedes mal alle Plots neu erstellt werden. Dadurch ist es aber möglich, direkt auch .csv Daten zuzugreifen. Datei für jeden Plot, spart aber Compilezeit, da nicht jedes mal alle Plots neu erstellt werden. Dadurch ist es aber möglich, direkt auch .csv Daten
\ No newline at end of file zuzugreifen.
\ No newline at end of file
test \typeout{Adapted from KOMA script for use in Hochschule Hannover <2020-08-21> Jan Wille}
\ No newline at end of file \NeedsTeXFormat{LaTeX2e}
\ProvidesClass{HsH-report}[2020/09/21 HsH Report based on KOMA]
\RequirePackage[utf8]{inputenc}
\RequirePackage[T1]{fontenc}
\RequirePackage{lmodern}
\RequirePackage{graphicx}
\RequirePackage{babel}
\DeclareOption{ngerman}{%
\PassOptionsToPackage{\CurrentOption}{babel}
}
\DeclareOption{english}{%
\PassOptionsToPackage{\CurrentOption}{babel}
}
\ExecuteOptions{ngerman}
\ProcessOptions
\DeclareOption*{\PassOptionsToClass{\CurrentOption}{scrreprt}}
\ProcessOptions\relax
\LoadClass[bibliography=totoc,listof=totoc]{scrreprt}
\makeatletter
\renewcommand\maketitle{
\newpage
\thispagestyle{empty}
\begin{center}
\vspace*{\fill}
\LARGE{
Projekt Bericht:\\
\textbf{\@title}
}\\
\vspace{1cm}
von \@author
\vfill
\end{center}
\vspace{10cm}
\clearpage
}
\makeatother
\ No newline at end of file
test.pdf 0 → 100644
File added
test.tex 0 → 100644
\documentclass[ngerman,twoside]{HsH-report}
\title{Test Dokument}
\author{Jan wille}
\date{\today}
\usepackage{color}
\begin{document}
\maketitle
\tableofcontents
\chapter{one}
{\color{red}test} und stuff
\begin{figure}
\caption{test}
\end{figure}
\listoffigures
\end{document}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment