-
Notifications
You must be signed in to change notification settings - Fork 0
/
beamer-main.tex
124 lines (94 loc) · 2.56 KB
/
beamer-main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
% -*- coding: utf-8 -*-
%% TimmLiTeX
%% Version: v0.9.1
%% Last modified: 2024-02-20 18:18:25
\documentclass[
10pt, % 8pt, 9pt, 10pt, 11pt, 12pt, 14pt, 17pt, 20pt
% serif,
% table, % for table coloring
% draft,
% ngerman,
% handout, % remove overlays
compress,
xcolor={table,dvipsnames},
aspectratio=169,
]{beamer}
\input{beamer-settings}
%==============================
% Themes
%------------------------------
\usetheme{Lustnau}
% \usetheme{Tuebingen}
\input{beamerlogosTuebingen.tex}
% \usetheme{Bielefeld}
% \input{beamerlogosBielefeld.tex}
% \usetheme{Duesseldorf}
% \input{beamerlogosDuesseldorf.tex}
%==============================
% Optional packages & settings
%------------------------------
%% Tables
\usepackage{booktabs} % Nicer tables
%% Graphics
\input{packages/tikz-settings}
\input{packages/forest-settings}
%% Linguistics
\input{packages/linguex-settings}
\input{packages/langsci-avm-settings}
% \usepackage[inference]{semantic} % for CCG
% \usepackage{packages/ccg}
%% Code listings
\input{packages/listings-settings}
% \input{TLmacros}
\definecolor{myblue}{rgb}{0,0,0.70}
\definecolor{myred}{rgb}{0.8,0,0}
\definecolor{mydarkgreen}{rgb}{0,0.55,0}
\newcommand{\bsp}[1]{{\usebeamercolor[bg!90]{block title example}\itshape\bfseries #1}}
\newcommand{\term}[1]{{\usebeamercolor[fg!100]{math text displayed}\scshape\bfseries #1}}
\newcommand{\bspcolor}[1]{{\usebeamercolor[bg!90]{block title example}\bfseries #1}}
%==============================
% Title
%------------------------------
\title{Beamer Template}
\subtitle{Subtitle}
\author{Max Mustermann}
\institute[Inst.]{Institute/Affiliation}
\date{\today}
%\logo{\pgfimage[width=2cm,height=1cm]{logo-emmy}} % Logo on all slides (pdf,png,jpg,eps)
%\titlegraphic{\includegraphics[height=1cm]{path/to/picture}} % on title slide
%==============================
% Slides
%------------------------------
\begin{document}
\maketitle
% \begin{frame}[plain]
% \titlepage
% \end{frame}
%\frame{\titlepage}
%\frame{
%\frametitle{Table of contents}
% \tableofcontents
% [pausesections]
%}
%\AtBeginSection[]
%{
% \begin{frame}{Outline}
% \tableofcontents[
% currentsection
% ]
% \end{frame}
%}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\input{beamer-examples.tex}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{frame}[plain,allowframebreaks]
\frametitle{}
\insertBib
\end{frame}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% eval: (TeX-run-style-hooks "beamer")
%%% End: