diff --git a/presentations/Tutorenschlung/images/Teach-yourself-C++-in-21-days.png b/presentations/Tutorenschlung/images/Teach-yourself-C++-in-21-days.png new file mode 100644 index 0000000..b1dbe24 Binary files /dev/null and b/presentations/Tutorenschlung/images/Teach-yourself-C++-in-21-days.png differ diff --git a/presentations/Tutorenschlung/logos/background.jpg b/presentations/Tutorenschlung/logos/background.jpg new file mode 100644 index 0000000..d9f28d7 Binary files /dev/null and b/presentations/Tutorenschlung/logos/background.jpg differ diff --git a/presentations/Tutorenschlung/presentation/Makefile b/presentations/Tutorenschlung/presentation/Makefile new file mode 100644 index 0000000..99a12c5 --- /dev/null +++ b/presentations/Tutorenschlung/presentation/Makefile @@ -0,0 +1,10 @@ +SOURCE = presentation + +make: + #latexmk -pdf -pdflatex="pdflatex -interactive=nonstopmode" -use-make $(SOURCE).tex + pdflatex -shell-escape $(SOURCE).tex -output-format=pdf #shellescape wird fürs logo benötigt + pdflatex -shell-escape $(SOURCE).tex -output-format=pdf # nochmaliges ausführen wegen Inhaltsverzeichnissen + make clean + +clean: + rm -rf $(TARGET) *.class *.html *.log *.aux *.out *.glo *.glg *.gls *.ist *.xdy *.1 *.toc *.snm *.nav *.vrb *.fls *.fdb_latexmk *.pyg diff --git a/presentations/Tutorenschlung/presentation/presentation.tex b/presentations/Tutorenschlung/presentation/presentation.tex new file mode 100644 index 0000000..aaf8e58 --- /dev/null +++ b/presentations/Tutorenschlung/presentation/presentation.tex @@ -0,0 +1,68 @@ +\documentclass[usepdftitle=false,hyperref={pdfpagelabels=false}]{beamer} + +% use KIT-Theme +% see http://sdqweb.ipd.kit.edu/wiki/Dokumentvorlagen +%\usetheme{Frankfurt} % see http://deic.uab.es/~iblanes/beamer_gallery/index_by_theme.html as fallback +\InputIfFileExists{../templates/beamerthemekit.sty}{\usepackage{../templates/beamerthemekit}}{\usetheme{Frankfurt}} +\usefonttheme{professionalfonts} + +\usepackage{hyperref} +\usepackage{lmodern} +\usepackage{listings} +\usepackage{wrapfig} % see http://en.wikibooks.org/wiki/LaTeX/Floats,_Figures_and_Captions +\usepackage[utf8]{inputenc} % this is needed for german umlauts +\usepackage[ngerman]{babel} % this is needed for german umlauts +\usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf +\usepackage{verbatim} +\usepackage{relsize} +\usepackage{subfigure} +\usepackage{algorithm,algpseudocode} +\usepackage{minted} % needed for the inclusion of source code +\usepackage{menukeys} +\usepackage{xcolor} +\usepackage{../templates/myStyle} + +\newcommand\tutor{Martin Thoma} +\newcommand\tutNR{10} +\newcommand\titleText{Programmieren-Tutorium Nr. \tutNR{} bei \tutor} +\institute{Fakultät für Informatik} + +\hypersetup{pdftitle={\titleText}} +\beamertemplatenavigationsymbolsempty + +\newcommand\InsertToC[1][]{ + \begin{frame}{Outline} + \tableofcontents[subsectionstyle=show/show/show, subsubsectionstyle=show/show/show, #1] + \end{frame} +} + +\begin{document} +\title{\titleText} +\subtitle{TODO: Subtitle setzen!} +\author{\tutor} +\date{\today} +\subject{Programmieren} + +\frame{\titlepage} + +\frame{ + \frametitle{Inhaltsverzeichnis} + \setcounter{tocdepth}{1} + \tableofcontents + \setcounter{tocdepth}{2} +} + +%\AtBeginSection[]{ +% \InsertToC[sections={\thesection}] % shows only subsubsections of one subsection +%} + +\section{Abspann} +\subsection{Name of subsection} +\begin{frame}{your title} +Your content +% \inputminted[linenos=false, numbersep=5pt, tabsize=4, fontsize=\small, label=Baby.java, frame=lines, firstline=5, lastline=6]{java}{singleLines.java} +\end{frame} + +\framedgraphic{Vielen Dank für eure Aufmerksamkeit!}{../images/Teach-yourself-C++-in-21-days.png} + +\end{document} diff --git a/presentations/Tutorenschlung/templates/myStyle.sty b/presentations/Tutorenschlung/templates/myStyle.sty new file mode 100644 index 0000000..ab8bb19 --- /dev/null +++ b/presentations/Tutorenschlung/templates/myStyle.sty @@ -0,0 +1,30 @@ +\newcommand {\framedgraphic}[2] { + \begin{frame}{#1} + \begin{center} + \includegraphics[width=\textwidth,height=0.8\textheight,keepaspectratio]{#2} + \end{center} + \end{frame} +} + +\hypersetup{% + breaklinks=true, + linktocpage=false, + colorlinks=true, + urlcolor=blue, + linkcolor=blue, + citecolor=black +} + +\newcommand{\myCode}[1]{\colorbox{gray!30}{#1}} + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Make source code easier to copy % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% from http://tex.stackexchange.com/questions/57151/how-do-i-prevent-conflicts-between-accsupp-and-hyperref +\usepackage{accsupp} +\newcommand\emptyaccsupp[1]{\BeginAccSupp{ActualText={}}#1\EndAccSupp{}} + + +%default definition is: \def\theFancyVerbLine{\rmfamily\tiny\arabic{FancyVerbLine}} +\let\theHFancyVerbLine\theFancyVerbLine% don't apply our patch to hyperref's version +\def\theFancyVerbLine{\rmfamily\tiny\emptyaccsupp{\arabic{FancyVerbLine}}}