Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
1 result

Praesentation.tex

Blame
  • Praesentation.tex 2.77 KiB
    %
    % THE BEER-WARE LICENSE (Rev. 42):
    % Ronny Bergmann <bergmann@mathematik.uni-kl.de> wrote this file. As long as you
    % retain this notice you can do whatever you want with this stuff. If we meet
    % some day, and you think this stuff is worth it, you can buy me a beer or
    % coffee in return.
    %
    %
    \documentclass[german,10pt,xcolor=colortbl%
    ,compress%
    ,aspectratio=169%
    %,draft
    ]{beamer}
    \usepackage[utf8]{inputenc}
    \usepackage[T1]{fontenc}
    \usepackage{calc}
    \usepackage{color}
    \usepackage[ngerman]{babel} % Neue Rechtschreibung
    \usepackage{amsmath,amsthm,amssymb,euscript} % AMS-LaTeX  
    \usepackage{enumerate,graphicx,transparent}
    \usepackage{caption, subcaption, booktabs}
    \usepackage{textcomp} %liefert das ° Zeichen und einige mehr
    
    % !TeX TXS-program:bibliography = txs:///biber
    % This is a magic comment which tells TeXstudio to use biber for processing the bibliography. It doesn't do anything if you don't use TeXstudio.
    \usepackage[backend=biber, sorting=none]{biblatex}
    
    \usepackage{xparse}
    \addbibresource{Literatur.bib}
    %Einstellungen für TexStudio:
    %Optionen>TeXstudio Konfigurieren>Erzeugen>Standart Bibliographieprogramm -> "biber" auswählen
    %Optionen>TeXstudio Konfigurieren>Befehle> biber: "biber %"
    %Optionen>TeXstudio Konfigurieren>Befehle> BibTeX: "biber %.aux"
    %Sollte in anderen Programmen ähnlich sein.
    
    \AtBeginSection[]{
    	\begin{frame}
    		\vfill
    		\centering
    		\begin{beamercolorbox}[sep=8pt,center]{title}
    			\usebeamerfont{title}\insertsectionhead\par%
    		\end{beamercolorbox}
    		\vfill
    	\end{frame}
    }
    
    % Das hat über eine Stunde gedauert. dafür hätte ich gern einen Copyrightvermerk. Ich werde aber keinen bekommen.
    % Literaturverweise in Fußnoten jedes mal anzeigen, wenn sie benutzt werden
    \makeatletter
    \let\oldfootcite=\footfullcite
    \RenewDocumentCommand{\footfullcite}{oom}{
    	\@ifundefined{repeatcite@#3}%
    	{\oldfootcite[#1][#2]{#3}%
    		\expandafter\xdef\csname repeatcite@#3\endcsname{\thefootnote}%
    		\expandafter\xdef\csname citepage@#3\endcsname{\arabic{page}}}%
    	{\footnotemark[\csname repeatcite@#3\endcsname]}}
    \makeatother
    
    
    % Load Theme
    \usetheme[noptsans,navigation=true, FB=Physik, frametotal=true]{TUKL}
    
    %
    \setbeamertemplate{navigation symbols}{}
    \title{\LaTeX Template für Präsentationen in 16:9 Format}
    \subtitle{Untertitel}
    \date[]{\today\\[1ex]}
    \author[Autor1 für Metadaten, Autor2 für metadaten]{Autor1, \\Autor 2}
    \institute[]{Arbeitsgruppe AG\\FB Physik\\TU Kaiserslautern}
    
    
    % Einige Zeichen, die im ganzen Vortrag verwendet werden (können)
    \def\Haken{\color{green}$\checkmark$} % Grüner Haken
    \def\Kreuz{\color{red}$\boldsymbol{\times}$} % Rotes Kreuz
    
    \begin{document}
    	\maketitle
    	\input{00_Einleitung/Einleitung.tex}
    	\section{erster Teil} % die Klasse Beamer kennt keine Kapitel
    	\input{01_teil1/thema1.1}
    	\section{letzter Teil}
    	\input{09_Fazit/Fazit.tex}
    \end{document}