LaTeX-Vorlage für Abschlussarbeiten an der Fakultät efi https://fachschaft.efi.th-nuernberg.de
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40_Anhang.tex 647B

12345678910111213141516171819202122232425
  1. %!TeX root=00_Abschlussarbeit.tex
  2. \chapter{Anhang}
  3. % \section{Code}
  4. % Anhang mit Quellcode
  5. %\lstset{language=C++,
  6. % basicstyle=\ttfamily,
  7. % keywordstyle=\color{blue}\ttfamily,
  8. % stringstyle=\color{red}\ttfamily,
  9. % commentstyle=\color{green}\ttfamily,
  10. % morecomment=[l][\color{magenta}]{\#}
  11. %}
  12. % \begin{lstlisting}[caption={[For-Schleife] For-Schleife die die Zahlen von 1 bis 10 ausgiebt}]
  13. % // Print numbers from 1 to 10
  14. % #include <stdio.h>
  15. % int main() {
  16. % int i;
  17. % for (i = 1; i < 11; ++i)
  18. % {
  19. % printf("%d ", i);
  20. % }
  21. % return 0;
  22. % }
  23. % \end{lstlisting}