-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added non-broken handout generation, minor cleanups, changed size of …
…lstlisting code, added minor documentation comments
- Loading branch information
Showing
4 changed files
with
57 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
% Paste code for \begin{document} in here |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,20 @@ | ||
\documentclass[compress, 16pt, aspectratio=1610, utf8, noamsthm, xcolor=dvipsnames,xcolor=tables,xcolor=hyperref,hyperref=unicode]{beamer} % handout | ||
\documentclass[compress, 16pt, aspectratio=1610, utf8, noamsthm, xcolor=dvipsnames,xcolor=tables,xcolor=hyperref,hyperref=unicode]{beamer} % TODO handout | ||
% Add the handout parameters ito the subscript braces to generate nicely formatted 2 in 1 handouts | ||
|
||
%% Definitions: | ||
\def\github{https://github.com/becknik/} | ||
\def\mail{\href{mailto:[email protected]}{E-Mail~}} | ||
\def\semester{WS 22/23} | ||
\def\tutNR{X} % TODO | ||
|
||
\def\tutNR{X} | ||
%\setbeameroption{show notes on second screen} | ||
|
||
% Importing packages: | ||
\input{src/packages.tex} | ||
\usepackage{./src/beamertheme} | ||
%\setbeameroption{show notes on second screen} % This is different from handout generation | ||
|
||
\usebeamerfont{firacode} | ||
|
||
%% Setting up title page: | ||
\title[Übungsgr. 14 - Tutorium \tutNR]{Tutorium \tutNR} | ||
\subtitle[PSE]{Programmierung und Softwareentwicklung} | ||
\author{Jannik Becker} | ||
|
@@ -20,31 +24,37 @@ | |
\begin{document} | ||
\frame{\titlepage} | ||
|
||
\begin{frame}{Gliederung} | ||
\tableofcontents | ||
\end{frame} | ||
|
||
\AtBeginSection{ | ||
\mode<beamer>{ | ||
\begin{frame}{Gliederung} | ||
\tableofcontents[currentsection] | ||
\tableofcontents | ||
\end{frame} | ||
} | ||
|
||
\AtBeginSubsection{ | ||
\begin{frame}{Gliederung} | ||
\tableofcontents[currentsubsection] | ||
\end{frame} | ||
\AtBeginSection{ | ||
\begin{frame}{Gliederung} | ||
\tableofcontents[currentsection] | ||
\end{frame} | ||
} | ||
|
||
\AtBeginSubsection{ | ||
\begin{frame}{Gliederung} | ||
\tableofcontents[currentsubsection] | ||
\end{frame} | ||
} | ||
} | ||
|
||
\input{src/sample.tex} | ||
|
||
%\section[]{Korrektur} | ||
%\subsection[]{} | ||
\input{contents.tex} % Using this might be more tidy & decrease redundancy | ||
|
||
|
||
%\section[]{} | ||
%\subsection[]{} | ||
|
||
|
||
\section*{Abschluss} | ||
\makethanks | ||
\mode<beamer>{ | ||
\section*{Abschluss} | ||
\makethanks | ||
} | ||
\end{document} | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters