Abschlussarbeit/40_Anhang.tex

25 lines
647 B
TeX
Raw Permalink Normal View History

2023-05-11 00:06:03 +02:00
%!TeX root=00_Abschlussarbeit.tex
\chapter{Anhang}
% \section{Code}
% Anhang mit Quellcode
%\lstset{language=C++,
% basicstyle=\ttfamily,
% keywordstyle=\color{blue}\ttfamily,
% stringstyle=\color{red}\ttfamily,
% commentstyle=\color{green}\ttfamily,
% morecomment=[l][\color{magenta}]{\#}
%}
% \begin{lstlisting}[caption={[For-Schleife] For-Schleife die die Zahlen von 1 bis 10 ausgiebt}]
% // Print numbers from 1 to 10
% #include <stdio.h>
% int main() {
% int i;
% for (i = 1; i < 11; ++i)
% {
% printf("%d ", i);
% }
% return 0;
% }
% \end{lstlisting}