% !TeX program = pdflatex \pdfoptionpdfminorversion=5 \documentclass[9pt]{beamer} \mode { \usetheme{HHUD} \setbeamercovered{invisible} } \usepackage[english]{babel} \usepackage[utf8x]{inputenc} \usepackage{times} \usepackage{amsmath} \usepackage{subfigure} \usepackage{graphicx} \usepackage{hyperref} \usepackage{xmpmulti} \usepackage{multirow} \usepackage{appendixnumberbeamer} \usepackage[normalem]{ulem} \usepackage{mathabx} \usepackage[linesnumbered,algoruled,boxed,lined]{algorithm2e} \usepackage{amssymb} \usepackage[longnamesfirst, authoryear]{natbib} \usepackage{textcomp} \usepackage{listings} \usepackage{color} \usepackage{tabularx} \usepackage{graphicx}% http://ctan.org/pkg/graphicx \usepackage{booktabs}% http://ctan.org/pkg/booktabs \usepackage[absolute,overlay]{textpos} \usepackage{subfigure} \usepackage{tikz} \usepackage{pgfplots} \pgfplotsset{ width=.8\textwidth, % compat=1.13, height=3.0cm, xbar stacked, xmin=0, enlarge y limits=0.5, symbolic y coords={Haskell,Frege}, ytick=data, % nodes near coords, } %%%%% https://github.com/cebe/pdfpc-latex-notes % create a new file handle \newwrite\pdfpcnotesfile % open file on \begin{document} \AtBeginDocument{% \immediate\openout\pdfpcnotesfile\jobname.pdfpc\relax \immediate\write\pdfpcnotesfile{[notes]} } % define a # http://tex.stackexchange.com/a/37757/10327 \begingroup \catcode`\#=12 \gdef\hashchar{#}% \endgroup % define command \pnote{} that works exactly like not but % additionally writes notes to file in pdfpc readable format \newcommand{\pnote}[1]{% % keep normal notes working \note{#1}% % write notes to file \begingroup \let\#\hashchar \immediate\write\pdfpcnotesfile{\#\#\# \theframenumber}% \immediate\write\pdfpcnotesfile{\unexpanded{#1}}% \endgroup } % close file on \begin{document} \AtEndDocument{% \immediate\closeout\pdfpcnotesfile } % background image \usebackgroundtemplate{\includegraphics[width=\paperwidth] {fig/background_small}} % für den schiefen blauen Streifen _small entfernen % commands for low and high decoration in frame foot \newcommand{\footdecorationlow}{\usebackgroundtemplate{ \includegraphics[width=\paperwidth]{fig/background_small}}} \newcommand{\footdecorationhigh}{\usebackgroundtemplate{ \includegraphics[width=\paperwidth]{fig/background_small}}} % für den schiefen blauen Streifen _small entfernen % Own commands: \newcommand{\TODO}{\colorbox{yellow}{\color{red}todo}} \newcommand{\CSPM}{CSP$_M$} \newcommand{\code}[1]{\texttt{#1}} \newcommand{\la}[1]{{\fontsize{6pt}{8pt}\selectfont\color{gray}\textit{#1}}} \usepackage{listings} % Alternative: minted \lstset{ captionpos=b, language=haskell, basicstyle=\footnotesize\ttfamily, morekeywords={derive,pure,native,private,throw,throwIO}, moredelim=**[is][\btHL]{@@}{@@}, escapeinside={\%*}{*)}, postbreak=\raisebox{0ex}[0ex][0ex]{\ensuremath{\color{gray}\hookrightarrow\space}}, breakindent=10pt, keywordstyle=\bfseries\color{black!40!black}, commentstyle=\itshape\color{green!40!black}, identifierstyle=\color{hhuUniBlau}, alsoother=@\$, % classstyle=\color{black}, stringstyle=\color{red}, showstringspaces=false, } \lstdefinestyle{prompt}{ breaklines=true, language=bash, morecomment=[l]{hs>}, morecomment=[l]{fr>}, commentstyle=\color{black!40!black}, basicstyle=\footnotesize\ttfamily\color{darkgray!40!darkgray}, identifierstyle=\color{darkgray!40!darkgray}, keywordstyle=\color{darkgray!40!darkgray}, % classstyle=\color{darkgray!40!darkgray}, stringstyle=\color{darkgray!40!darkgray} } % \AtBeginSection[] { % \footdecorationhigh % \begin{frame} % \thispagestyle{empty} % %\frametitle{Gliederung} % \vspace{-5mm} % \tableofcontents[currentsection] % \end{frame} % \footdecorationlow % } % % % % % % % % CHANGE TOPIC AND AUTHOR INFORMATION HERE % % % % % % % % HIER DEN TITEL DER ARBEIT EINTRAGEN \title{Structure or Content? Towards assessing Argument Relevance} % HIER DEN NAMEN UND VORNAMEN EINTRAGEN \author{Marc Feger, Jan Steimann and Christian Meter} % HIER DAS PRÄSENTATIONSDATUM EINTRAGEN \date{\today} % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % \institute{Heinrich-Heine-University Düsseldorf\\Institute of Computer Science\\ Department for Computer-Networks and Communication-Systems} % % % % % % % % % % Own commands % % % % % % % % % % Hier beginnt das Dokument % \begin{document} \footdecorationhigh \begin{frame} \thispagestyle{empty} \titlepage \end{frame} \footdecorationhigh % \begin{frame} % \thispagestyle{empty} % %\frametitle{Gliederung} % \vspace{-5mm} % \tableofcontents % \end{frame} % \footdecorationlow % Fußzeile wieder niedrig setzen für normale Folien \footdecorationlow % Ab hier werden die LaTeX-Dateien der einzelnen Abschnitte eingefügt \input{slides/introduction} \input{slides/dataset} \input{slides/methods} \input{slides/results} % % % % % % % % % Ende der eingefügten LaTeX-Dateien % % % % % % % % % \begin{frame} \begin{center} \begin{columns} \column{0.7\textwidth} \begin{center} \huge {\color{hhuUniBlau} Thank you!} \end{center} \column{0.3\textwidth} \includegraphics[scale=0.08]{bilder/pngfuel-answere.png} \end{columns} \end{center} \end{frame} \end{document} % % Hier endet das Dokument %