1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
% !TEX root = ../../buch.tex
%
% main.tex -- Paper zum Thema <multiplikation>
%
% (c) 2021 Hochschule Rapperswil
%
\definecolor{mygreen}{RGB}{28,172,0} % color values Red, Green, Blue
\definecolor{mylilas}{RGB}{170,55,241}
\definecolor{backcolour}{rgb}{0.95,0.95,0.92}
\lstdefinestyle{multiplikationC}{
numbers=left,
belowcaptionskip=1\baselineskip,
breaklines=true,
frame=l,
framerule=0pt,
framesep=-1pt,
xleftmargin=1em,
language=C,
showstringspaces=false,
basicstyle=\ttfamily,
keywordstyle=\bfseries\color{green!40!black},
commentstyle=\itshape\color{purple!40!black},
identifierstyle=\color{blue},
stringstyle=\color{red},
numberstyle=\ttfamily\tiny,
backgroundcolor=\color{backcolour}
}
\chapter{Schnelle Matrizenmultiplikation\label{chapter:multiplikation}}
\lhead{Schnelle Matrizenmultiplikation}
\begin{refsection}
\chapterauthor{Michael Schmid}
\input{papers/multiplikation/einlteung.tex}
\input{papers/multiplikation/problemstellung.tex}
\input{papers/multiplikation/loesungsmethoden.tex}
\printbibliography[heading=subbibliography]
\end{refsection}
|