Initaler Commit
This commit is contained in:
commit
227d1c737e
21
.gitignore
vendored
Normal file
21
.gitignore
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# auxiliary files for LaTeX
|
||||||
|
*.acn
|
||||||
|
*.acr
|
||||||
|
*.alg
|
||||||
|
*.aux
|
||||||
|
*.bbl
|
||||||
|
*.bcf
|
||||||
|
*.blg
|
||||||
|
*.fdb_latexmk
|
||||||
|
*.fls
|
||||||
|
*.ist
|
||||||
|
*.loa
|
||||||
|
*.lof
|
||||||
|
*.log
|
||||||
|
*.lol
|
||||||
|
*.lot
|
||||||
|
*.out
|
||||||
|
*.run.xml
|
||||||
|
*.synctex.gz
|
||||||
|
*.tdo
|
||||||
|
*.toc
|
4
README.md
Normal file
4
README.md
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# UE2-Verfahren
|
||||||
|
|
||||||
|
Dieses Repository enthält meinen Versuch einer Zusammenfassung verschiedener Verfahren und Algorithmen aus "Optimierungen in Übersetzern". Ich garantiere weder für Korrektheit noch Vollständigkeit.
|
||||||
|
Die Zusammenfassung ist unter der "[Commons Namensnennung-Nicht kommerziell 4.0 International Lizenz](http://creativecommons.org/licenses/by-nc/4.0/Creative)" lizenziert.
|
48
verfahren.tex
Normal file
48
verfahren.tex
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
% !TeX spellcheck = de_DE
|
||||||
|
\documentclass[11pt,a4paper,toc]{scrartcl}
|
||||||
|
\usepackage[a4paper,left=2.5cm,right=2.5cm,top=2.5cm,bottom=2.5cm]{geometry}
|
||||||
|
\usepackage[ngerman]{babel}
|
||||||
|
\usepackage{amssymb}
|
||||||
|
\usepackage{scrextend}
|
||||||
|
\usepackage[utf8]{inputenc}
|
||||||
|
\usepackage{amsmath}
|
||||||
|
\usepackage{enumitem}
|
||||||
|
\usepackage{mathtools}
|
||||||
|
\usepackage[load=named]{siunitx}
|
||||||
|
\usepackage{csquotes}
|
||||||
|
\usepackage[hidelinks]{hyperref}
|
||||||
|
%\usepackage{listings}
|
||||||
|
\usepackage{algorithmicx}
|
||||||
|
\usepackage{algpseudocode}
|
||||||
|
%\usepackage{pgfplots}
|
||||||
|
\usepackage{tikz}
|
||||||
|
%\usetikzlibrary{positioning}
|
||||||
|
%\usetikzlibrary{arrows.meta}
|
||||||
|
%\usetikzlibrary{quotes}
|
||||||
|
%\usetikzlibrary{angles}
|
||||||
|
%\usetikzlibrary{babel}
|
||||||
|
%\usetikzlibrary{fit}
|
||||||
|
%\usepackage{datetime}
|
||||||
|
%\usepackage{xcolor}
|
||||||
|
|
||||||
|
%\pdfminorversion=7 % Import-Unterstützung für PDFs bis Version 1.7
|
||||||
|
%\pgfplotsset{compat=1.16} % verhindern, dass pgfplots im Rückwärtskompatibilitätsmodus arbeitet
|
||||||
|
|
||||||
|
|
||||||
|
\setlist[enumerate,1]{label={\arabic*.}}
|
||||||
|
\setlist[enumerate,2]{label={\alph*)}}
|
||||||
|
|
||||||
|
\title{Optimierungen in Übersetzern: Verfahren}
|
||||||
|
\author{Marco Ammon (my04mivo)}
|
||||||
|
\date{\today}
|
||||||
|
|
||||||
|
\makeatletter
|
||||||
|
\g@addto@macro\bfseries{\boldmath}
|
||||||
|
\makeatother
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
\maketitle
|
||||||
|
|
||||||
|
\tableofcontents
|
||||||
|
\clearpage
|
||||||
|
\end{document}
|
Loading…
Reference in New Issue
Block a user