mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
Erste anpassungen an der Vorlage fürs Proseminar
This commit is contained in:
parent
3823058280
commit
1be8f17cc0
8 changed files with 240 additions and 0 deletions
4
presentations/Datamining-Proseminar/.gitignore
vendored
Normal file
4
presentations/Datamining-Proseminar/.gitignore
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
Kurzpraesentation/logos/kitlogo*
|
||||
Kurzpraesentation/templates/*kit*.sty
|
||||
Kurzpraesentation/templates/semirounded.sty
|
||||
Kurzpraesentation/templates/tikzuml.sty
|
|
@ -0,0 +1,27 @@
|
|||
\documentclass[hyperref={pdfpagelabels=false},usepdftitle=false]{beamer}
|
||||
\usepackage{../templates/myStyle}
|
||||
|
||||
\begin{document}
|
||||
|
||||
\title{\titleText}
|
||||
\subtitle{}
|
||||
\author{\tutor}
|
||||
\date{28. November 2013}
|
||||
\subject{Proseminar Informatik}
|
||||
|
||||
\frame{\titlepage}
|
||||
|
||||
%\frame{
|
||||
% \frametitle{Inhalte}
|
||||
% \setcounter{tocdepth}{1}
|
||||
% \tableofcontents
|
||||
% \setcounter{tocdepth}{2}
|
||||
%}
|
||||
|
||||
\section{Grundlagen}
|
||||
\input{Grundlagen}
|
||||
|
||||
\section{Ende}
|
||||
\input{Ende}
|
||||
|
||||
\end{document}
|
|
@ -0,0 +1,33 @@
|
|||
\subsection{Aufgabe 3}
|
||||
\begin{frame}{Aufgabe 3}
|
||||
Zeigen Sie: Wenn der Graph eines Kreises bipartit ist, dann hat der Kreis gerade Länge.
|
||||
\end{frame}
|
||||
|
||||
\subsection{Bildquellen}
|
||||
\begin{frame}{Bildquellen}
|
||||
\begin{itemize}
|
||||
\item \href{http://commons.wikimedia.org/wiki/File:Hypercube.svg}{http://commons.wikimedia.org/wiki/File:Hypercube.svg}
|
||||
\item \href{http://commons.wikimedia.org/wiki/File:Konigsberg\_bridges.png}{http://commons.wikimedia.org/wiki/File:Konigsberg\_bridges.png}
|
||||
\item \href{http://commons.wikimedia.org/wiki/File:Unit\_disk\_graph.svg}{http://commons.wikimedia.org/wiki/File:Unit\_disk\_graph.svg}
|
||||
\item \href{http://goo.gl/maps/WnXRh}{Google Maps} (Grafiken \TCop 2013 Cnes/Spot Image, DigitalGlobe)
|
||||
\item \href{http://cf.drafthouse.com/\_uploads/galleries/29140/good_will\_hunting\_3.jpg}{cf.drafthouse.com/\_uploads/galleries/29140/good\_will\_hunting\_3.jpg}
|
||||
\end{itemize}
|
||||
\end{frame}
|
||||
|
||||
\subsection{Literatur}
|
||||
\begin{frame}{Literatur}
|
||||
\begin{itemize}
|
||||
\item A. Beutelspacher: \textit{Diskrete Mathematik für Einsteiger}, 4. Auflage, ISBN 978-3-8348-1248-3
|
||||
\end{itemize}
|
||||
\end{frame}
|
||||
|
||||
\subsection{Folien, \LaTeX und Material}
|
||||
\begin{frame}{Folien, \LaTeX und Material}
|
||||
Der Foliensatz und die \LaTeX und Ti\textit{k}Z-Quellen sind unter
|
||||
|
||||
\href{https://github.com/MartinThoma/LaTeX-examples/tree/master/presentations/Diskrete-Mathematik}{github.com/MartinThoma/LaTeX-examples/tree/master/presentations/Diskrete-Mathematik}
|
||||
\\
|
||||
|
||||
Kurz-URL:
|
||||
\href{http://goo.gl/uTgam}{goo.gl/uTgam}
|
||||
\end{frame}
|
|
@ -0,0 +1,8 @@
|
|||
\subsection{Grundlagen}
|
||||
\begin{frame}{Graph}
|
||||
\begin{block}{Graph}
|
||||
Ein Graph ist ein Tupel $(E, K)$, wobei $E \neq \emptyset$ die Eckenmenge und
|
||||
$K \subseteq E \times E$ die
|
||||
Kantenmenge bezeichnet.
|
||||
\end{block}
|
||||
\end{frame}
|
|
@ -0,0 +1,9 @@
|
|||
SOURCE = Datamining-Proseminar-Kurzpraesentation
|
||||
|
||||
make:
|
||||
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
|
Binary file not shown.
After Width: | Height: | Size: 21 KiB |
|
@ -0,0 +1,139 @@
|
|||
% 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[english]{babel} % this is needed for german umlauts
|
||||
\usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
|
||||
\usepackage{verbatim}
|
||||
\usepackage{tikz}
|
||||
\usetikzlibrary{arrows,shapes,decorations.pathmorphing}
|
||||
\usepackage{relsize}
|
||||
\usepackage{subfigure}
|
||||
\usepackage[Algorithmus]{algorithm}
|
||||
\usepackage{algpseudocode}
|
||||
\usepackage{minted} % needed for the inclusion of source code
|
||||
\usepackage{menukeys}
|
||||
\usepackage{xcolor}
|
||||
\usepackage{pifont}% http://ctan.org/pkg/pifont
|
||||
\usepackage{soul}
|
||||
\usepackage{braket}
|
||||
|
||||
% Define some styles for graphs
|
||||
\tikzstyle{vertex}=[circle,fill=black!25,minimum size=20pt,inner sep=0pt]
|
||||
\tikzstyle{selected vertex} = [vertex, fill=red!24]
|
||||
\tikzstyle{blue vertex} = [vertex, fill=blue!24]
|
||||
\tikzstyle{edge} = [draw,thick,-]
|
||||
\tikzstyle{weight} = [font=\small]
|
||||
\tikzstyle{selected edge} = [draw,line width=5pt,-,red!50]
|
||||
\tikzstyle{ignored edge} = [draw,line width=5pt,-,black!20]
|
||||
|
||||
%\algdef{SE}[IF]{NoThenIf}{EndIf}[1]{\algorithmicif\ #1\textbf{:}}{\algorithmicend\ \algorithmicif}%
|
||||
\algtext*{EndIf} % Remove "end if" text
|
||||
\algtext*{EndWhile} % Remove "end while" text
|
||||
\algtext*{EndFunction} % Remove "end while" text
|
||||
\algnewcommand\Global{\textbf{global }}
|
||||
|
||||
% http://tex.stackexchange.com/a/8388/5645
|
||||
\newcommand{\alertline}{%
|
||||
\usebeamercolor[fg]{normal text}%
|
||||
\only{\usebeamercolor[fg]{alerted text}}}
|
||||
|
||||
\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}}}
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
% Add some shortcuts %
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
\newcommand{\cmark}{\ding{51}}% a checkmark
|
||||
\newcommand{\xmark}{\ding{55}}% a cross
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
% Set some template options - other tutors will have to adjust this %
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
\newcommand\tutor{Martin Thoma}
|
||||
\newcommand\titleText{On Node Classification in Dynamic Content-based Networks}
|
||||
\institute{Institut für Programmstrukturen und Datenorganisation}
|
||||
\titleimage{graph-titleimage}
|
||||
|
||||
\hypersetup{pdftitle={\titleText}}
|
||||
\beamertemplatenavigationsymbolsempty
|
||||
|
||||
\newcommand\InsertToC[1][]{
|
||||
\begin{frame}{Outline}
|
||||
\tableofcontents[subsectionstyle=show/show/show, subsubsectionstyle=show/show/show, #1]
|
||||
\end{frame}
|
||||
}
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
% Gallery %
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
\usepackage{adjustbox}
|
||||
\usepackage{xcolor}
|
||||
\definecolor{myLightGray}{HTML}{F9F9F9}
|
||||
\definecolor{borderColor}{HTML}{CCCCCC}
|
||||
|
||||
\usepackage{standalone} % needed for includestandalone
|
||||
\usepackage{tikz} % needed for includestandalone
|
||||
\usetikzlibrary{arrows,positioning, calc}
|
||||
|
||||
\tikzset{
|
||||
pil/.style={->,thick}
|
||||
}
|
||||
|
||||
\newenvironment{gallery}{%
|
||||
\center
|
||||
}{%
|
||||
\par\endcenter
|
||||
}
|
||||
|
||||
\newcommand{\galleryimage}[2][borderColor]{
|
||||
\adjustbox{width=2cm,height=2cm,keepaspectratio, center=2cm,
|
||||
valign=M, set vsize={1cm}{1cm},
|
||||
bgcolor=myLightGray,cfbox=#1 1px 0px 2px}
|
||||
{\includestandalone{#2}}%
|
||||
\space\ignorespaces
|
||||
}%
|
||||
|
||||
\definecolor{Green}{HTML}{BEF781}
|
||||
|
||||
\tikzstyle{vertex}=[draw,fill=black,circle,minimum size=10pt,inner sep=0pt]
|
||||
\tikzstyle{selected edge} = [draw,line width=5pt,-,red!50]
|
||||
\def\TCop{\textsuperscript{\textcopyright}} % Copyright-sign
|
||||
\usepackage{mathtools}
|
||||
|
||||
\usepackage{csquotes}
|
20
presentations/Datamining-Proseminar/README.md
Normal file
20
presentations/Datamining-Proseminar/README.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
Über die Präsentation
|
||||
---------------------
|
||||
Diese Präsentation ist für das Proseminar "Diskrete Mathematik" als
|
||||
Teilnehmervortrag erstellt worden.
|
||||
|
||||
Er wird am 02.07.2013 gehalten und behandelt die Seiten 137 - 144 aus
|
||||
"Diskrete Mathematik für Einsteiger" von Beutelspacher (ISBN 978-3-8348-1248-3).
|
||||
|
||||
Der Vortrag ist für 75 Minuten ausgelegt.
|
||||
|
||||
* [Präsentation](LaTeX/Graphentheorie-I.pdf)
|
||||
* [Handout](Handout/Handout.pdf)
|
||||
|
||||
KIT-Style
|
||||
---------
|
||||
This one doesn't compile, as you need the KIT-Style (logos, layout,
|
||||
color theme)
|
||||
|
||||
Please take a look at the presentation "Tutorenschulung" for further
|
||||
information.
|
Loading…
Add table
Add a link
Reference in a new issue