Initial commit
This commit is contained in:
commit
a43bcb6b16
4 changed files with 200 additions and 0 deletions
11
LICENSE
Normal file
11
LICENSE
Normal file
|
@ -0,0 +1,11 @@
|
|||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
||||
Version 2, December 2004
|
||||
|
||||
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim or modified copies of this license document, and changing it is allowed as long as the name is changed.
|
||||
|
||||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. You just DO WHAT THE FUCK YOU WANT TO.
|
20
README.md
Normal file
20
README.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# ats-zf-zf
|
||||
[![CC BY-SA 3.0][cc-by-sa-shield]][cc-by-sa]
|
||||
|
||||
Zusammenfassung für die Vorlesung [*VL-NAME*](http://vvz.ethz.ch) bei M. A. Sprenger und weitere Dozenten im FS21.
|
||||
|
||||
## Kompiliertes `.pdf`
|
||||
Findest du hier: https://n.ethz.ch/~jannisp/download/ats-zf/
|
||||
|
||||
## Änderungen
|
||||
Falls du irgendwelche Fehler findest oder Sache ergänzen willst, darfst du die gerne selbst korrigieren/einfügen und einen Pull request öffnen. Ansonsten kontaktiere mich direkt ([jannisp](jannispmailto:jannisp@student.ethz.ch)).
|
||||
|
||||
## Copyleft
|
||||
Ausser den Grafiken unterliegte die Zusammenfassung der [Creative Commons Attribution-ShareAlike 3.0 International License][cc-by-sa].
|
||||
|
||||
[![CC BY-SA 3.0][cc-by-sa-image]][cc-by-sa]
|
||||
|
||||
[cc-by-sa]: http://creativecommons.org/licenses/by-sa/3.0/
|
||||
[cc-by-sa-image]: https://licensebuttons.net/l/by-sa/3.0/88x31.png
|
||||
[cc-by-sa-shield]: https://img.shields.io/badge/License-CC%20BY--SA%203.0-lightgrey.svg
|
||||
|
0
img/.gitignore
vendored
Normal file
0
img/.gitignore
vendored
Normal file
169
main.tex
Normal file
169
main.tex
Normal file
|
@ -0,0 +1,169 @@
|
|||
\documentclass[8pt,landscape]{article}
|
||||
\usepackage{multicol}
|
||||
\usepackage{calc}
|
||||
\usepackage{bookmark}
|
||||
\usepackage{ifthen}
|
||||
\usepackage[a4paper, landscape]{geometry}
|
||||
\usepackage{hyperref}
|
||||
\usepackage{ccicons}
|
||||
\usepackage{amsmath, amsfonts, amssymb, amsthm}
|
||||
\usepackage{listings}
|
||||
\usepackage{graphicx}
|
||||
\usepackage{fontawesome5}
|
||||
\usepackage{xcolor}
|
||||
\usepackage{float}
|
||||
\usepackage{apacite}
|
||||
\usepackage[
|
||||
type={CC},
|
||||
modifier={by-sa},
|
||||
version={3.0}
|
||||
]{doclicense}
|
||||
|
||||
\graphicspath{{./img/}}
|
||||
|
||||
\definecolor{codegreen}{rgb}{0,0.6,0}
|
||||
\definecolor{codegray}{rgb}{0.5,0.5,0.5}
|
||||
\definecolor{codepurple}{rgb}{0.58,0,0.82}
|
||||
\definecolor{backcolour}{rgb}{0.95,0.95,0.92}
|
||||
|
||||
\lstdefinestyle{mystyle}{
|
||||
backgroundcolor=\color{backcolour},
|
||||
commentstyle=\color{codegreen},
|
||||
keywordstyle=\color{magenta},
|
||||
numberstyle=\tiny\color{codegray},
|
||||
stringstyle=\color{codepurple},
|
||||
basicstyle=\ttfamily\footnotesize,
|
||||
breakatwhitespace=false,
|
||||
breaklines=true,
|
||||
captionpos=b,
|
||||
keepspaces=true,
|
||||
numbers=left,
|
||||
numbersep=5pt,
|
||||
showspaces=false,
|
||||
showstringspaces=false,
|
||||
showtabs=false,
|
||||
tabsize=2
|
||||
}
|
||||
|
||||
\lstset{style=mystyle}
|
||||
|
||||
% To make this come out properly in landscape mode, do one of the following
|
||||
% 1.
|
||||
% pdflatex latexsheet.tex
|
||||
%
|
||||
% 2.
|
||||
% latex latexsheet.tex
|
||||
% dvips -P pdf -t landscape latexsheet.dvi
|
||||
% ps2pdf latexsheet.ps
|
||||
|
||||
|
||||
% If you're reading this, be prepared for confusion. Making this was
|
||||
% a learning experience for me, and it shows. Much of the placement
|
||||
% was hacked in; if you make it better, let me know...
|
||||
|
||||
|
||||
% 2008-04
|
||||
% Changed page margin code to use the geometry package. Also added code for
|
||||
% conditional page margins, depending on paper size. Thanks to Uwe Ziegenhagen
|
||||
% for the suggestions.
|
||||
|
||||
% 2006-08
|
||||
% Made changes based on suggestions from Gene Cooperman. <gene at ccs.neu.edu>
|
||||
|
||||
|
||||
% To Do:
|
||||
% \listoffigures \listoftables
|
||||
% \setcounter{secnumdepth}{0}
|
||||
|
||||
|
||||
% This sets page margins to .5 inch if using letter paper, and to 1cm
|
||||
% if using A4 paper. (This probably isn't strictly necessary.)
|
||||
% If using another size paper, use default 1cm margins.
|
||||
\ifthenelse{\lengthtest { \paperwidth = 11in}}
|
||||
{ \geometry{top=.5in,left=.5in,right=.5in,bottom=.5in} }
|
||||
{\ifthenelse{ \lengthtest{ \paperwidth = 297mm}}
|
||||
{\geometry{top=1cm,left=1cm,right=1cm,bottom=1cm} }
|
||||
{\geometry{top=1cm,left=1cm,right=1cm,bottom=1cm} }
|
||||
}
|
||||
|
||||
% Turn off header and footer
|
||||
\pagestyle{empty}
|
||||
|
||||
|
||||
% Redefine section commands to use less space
|
||||
\makeatletter
|
||||
\renewcommand{\section}{\@startsection{section}{1}{0mm}%
|
||||
{-1ex plus -.5ex minus -.2ex}%
|
||||
{0.5ex plus .2ex}%x
|
||||
{\normalfont\large\bfseries}}
|
||||
\renewcommand{\subsection}{\@startsection{subsection}{2}{0mm}%
|
||||
{-1explus -.5ex minus -.2ex}%
|
||||
{0.5ex plus .2ex}%
|
||||
{\normalfont\normalsize\bfseries}}
|
||||
\renewcommand{\subsubsection}{\@startsection{subsubsection}{3}{0mm}%
|
||||
{-1ex plus -.5ex minus -.2ex}%
|
||||
{1ex plus .2ex}%
|
||||
{\normalfont\small\bfseries}}
|
||||
|
||||
|
||||
\makeatother
|
||||
|
||||
% Define BibTeX command
|
||||
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
|
||||
T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
|
||||
|
||||
% Don't print section numbers
|
||||
% \setcounter{secnumdepth}{0}
|
||||
|
||||
|
||||
\setlength{\parindent}{0pt}
|
||||
\setlength{\parskip}{0pt plus 0.5ex}
|
||||
|
||||
% -----------------------------------------------------------------------
|
||||
|
||||
\begin{document}
|
||||
|
||||
\raggedright
|
||||
\footnotesize
|
||||
\begin{multicols*}{3}
|
||||
|
||||
|
||||
% multicol parameters
|
||||
% These lengths are set only within the two main columns
|
||||
%\setlength{\columnseprule}{0.25pt}
|
||||
\setlength{\premulticols}{1pt}
|
||||
\setlength{\postmulticols}{1pt}
|
||||
\setlength{\multicolsep}{1pt}
|
||||
\setlength{\columnsep}{2pt}
|
||||
|
||||
\begin{center}
|
||||
\Large{ats-zf} \\
|
||||
\small{\href{http://www.vvz.ethz.ch/}{VL-NUMMER}} \\
|
||||
\small{Jannis Portmann \the\year} \\
|
||||
{\ccbysa}
|
||||
\rule{\linewidth}{0.25pt}
|
||||
\end{center}
|
||||
|
||||
\section{First}
|
||||
|
||||
\scriptsize
|
||||
|
||||
\section*{Copyleft}
|
||||
|
||||
\doclicenseImage \\
|
||||
Dieses Dokument ist unter (CC BY-SA 3.0) freigegeben \\
|
||||
\faGlobeEurope \kern 1em \url{https://n.ethz.ch/~jannisp/ats-zf} \\
|
||||
\faGit \kern 0.88em \url{https://git.thisfro.ch/thisfro/ats-zf}} \\
|
||||
Jannis Portmann, FS21
|
||||
|
||||
\section*{Referenzen}
|
||||
\begin{enumerate}
|
||||
\end{enumerate}
|
||||
|
||||
\section*{Bildquellen}
|
||||
\begin{itemize}
|
||||
\end{itemize}
|
||||
|
||||
\end{multicols*}
|
||||
|
||||
\end{document}
|
Loading…
Reference in a new issue