mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
added LaTeX-Files for presentation in KIT-style
This commit is contained in:
parent
87fdf99219
commit
40280d9e6c
5 changed files with 127 additions and 0 deletions
10
presentations/English/LaTeX/Makefile
Normal file
10
presentations/English/LaTeX/Makefile
Normal file
|
@ -0,0 +1,10 @@
|
|||
SOURCE = google-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
|
42
presentations/English/LaTeX/google-presentation.tex
Normal file
42
presentations/English/LaTeX/google-presentation.tex
Normal file
|
@ -0,0 +1,42 @@
|
|||
\documentclass[usepdftitle=false,hyperref={pdfpagelabels=false}]{beamer}
|
||||
\usepackage{../templates/myStyle}
|
||||
|
||||
\begin{document}
|
||||
\title{\titleText}
|
||||
\subtitle{History, Algorithm}
|
||||
\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{Introduction}
|
||||
\subsection{The early days}
|
||||
\begin{frame}{The early days}
|
||||
In the beginning, there were only web catalogues (maintained by hand)
|
||||
\end{frame}
|
||||
|
||||
\begin{frame}{The early days}
|
||||
Web crawler
|
||||
\end{frame}
|
||||
|
||||
\section{PageRank}
|
||||
\subsection{Kommende Tutorien}
|
||||
\begin{frame}{Kommende Tutorien}
|
||||
|
||||
\end{frame}
|
||||
|
||||
\framedgraphic{Thank you for your attention!}{../images/Teach-yourself-C++-in-21-days.png}
|
||||
|
||||
\end{document}
|
Loading…
Add table
Add a link
Reference in a new issue