initial presentation
authorMart Lubbers <mart@martlubbers.net>
Mon, 15 Jun 2015 09:52:35 +0000 (11:52 +0200)
committerMart Lubbers <mart@martlubbers.net>
Mon, 15 Jun 2015 09:52:35 +0000 (11:52 +0200)
pres/.gitignore [new file with mode: 0644]
pres/Makefile [new file with mode: 0644]
pres/preamble.tex [new file with mode: 0644]
pres/pres.tex [new file with mode: 0644]

diff --git a/pres/.gitignore b/pres/.gitignore
new file mode 100644 (file)
index 0000000..ec4639a
--- /dev/null
@@ -0,0 +1,7 @@
+pres.aux
+pres.fmt
+pres.log
+pres.nav
+pres.out
+pres.snm
+pres.toc
diff --git a/pres/Makefile b/pres/Makefile
new file mode 100644 (file)
index 0000000..ebaf303
--- /dev/null
@@ -0,0 +1,15 @@
+LATEX:=pdflatex
+BASE:=pres
+VPATH=./img/
+
+all: $(BASE).pdf
+
+%.pdf: %.fmt %.tex
+       $(LATEX) $(basename $@)
+       $(LATEX) $(basename $@)
+
+%.fmt: preamble.tex
+       $(LATEX) -ini -jobname="$(basename $@)" "&$(LATEX) $<\dump"
+
+clean:
+       $(RM) -v $(addprefix $(BASE).,aux log out toc pdf fmt nav snm)
diff --git a/pres/preamble.tex b/pres/preamble.tex
new file mode 100644 (file)
index 0000000..f9fc502
--- /dev/null
@@ -0,0 +1,36 @@
+\documentclass{beamer}
+
+
+\usetheme{Singapore}
+
+\hypersetup{%
+       pdfstartview={Fit},
+       pdftitle={Adaptable crawler specification generation system for leisure %
+activity RSS feeds},
+       pdfauthor={Mart Lubbers},
+       pdfsubject={Crawler generation}
+}
+
+\title{Adaptable crawler specification generation system for leisure activity %
+RSS feeds}
+\author[Lubbers,Paula,Grootjen]{%
+Mart Lubbers\\
+Radboud University, Nijmegen\\\vspace{1mm}
+\and
+Alessandro Paula\footnote{External supervisor}\\
+Hyperleap, Nijmegen\\\vspace{1mm}
+\and
+Franc Grootjen\footnote{Internal supervisor}\\
+Radboud University, Nijmegen
+}
+%\institute[Radboud University]{Radboud University Nijmegen}
+\date[2015]{\today}
+\subject{Crawler generation}
+
+\AtBeginSection[]
+{
+  \begin{frame}
+    \frametitle{Table of Contents}
+    \tableofcontents[currentsection]
+  \end{frame}
+}
diff --git a/pres/pres.tex b/pres/pres.tex
new file mode 100644 (file)
index 0000000..60d1095
--- /dev/null
@@ -0,0 +1,21 @@
+%&pres
+\begin{document}
+       \frame{\titlepage}
+
+       \section{Introduction}
+  \begin{frame}
+    \frametitle{This is the first slide}
+  \end{frame}
+
+       \section{Introduction}
+       \subsection{Hyperleap}
+       \subsection{Graphs}
+
+       \section{Methods}
+       \subsection{Algorithm}
+       \subsection{Program}
+
+       \section{Conclusion \& Discussion}
+       \subsection{Conclusion}
+       \subsection{Discussion}
+\end{document}