-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtesting.tex
More file actions
128 lines (96 loc) · 2.76 KB
/
testing.tex
File metadata and controls
128 lines (96 loc) · 2.76 KB
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
125
126
\documentclass[10pt]{beamer}
%% Use this for 4 on 1 handouts
%\documentclass[handout]{beamer}
%\usepackage{pgfpages}
%\pgfpagesuselayout{4 on 1}[landscape, a4paper, border shrink=5mm]
\usepackage[english]{babel}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
%\usepgflibrary{shadows}
% Set the presentation mode to BTH
\mode<presentation>
{
\usetheme{BTH_msv}
% Comment this if you do not want to reveal the bullets before they are going to be used
\setbeamercovered{transparent}
}
% Information for the title page
\title[]{A big test}
\subtitle{with small details}
\date[]{}
\author[Mikael Svahnberg]{Mikael Svahnberg\inst{1}}
\institute[BTH] % (optional, but mostly needed)
{
\inst{1}%
Mikael.Svahnberg@bth.se\\
School of Computing\\
Blekinge Institute of Technology%
}
% Delete this, if you do not want the table of contents to pop up at
% the beginning of each subsection:
%\AtBeginSubsection[]
%{
% \begin{frame}<beamer>{Outline}
% \tableofcontents[currentsection,currentsubsection]
% \end{frame}
%}
% If you wish to uncover everything in a step-wise fashion, uncomment
% the following command:
%\beamerdefaultoverlayspecification{<+->}
%\renewcommand{\bthslogan}{in deep shit}
\begin{document}
% Titlepage frame
\begin{frame}
\titlepage
\end{frame}
% ToC frame
% Use \section and \subsection commands to get things into the ToC.
%\begin{frame}
%\frametitle{Outline}
% \tableofcontents
%\end{frame}
% -----------------------------
% Your frames goes here
% -----------------------------
\begin{frame}[t]
\frametitle{First test frame}
\begin{itemize}
\item fee
\item fi
\item foo
\item bar
\end{itemize}
\end{frame}
\begin{frame}[t]
\frametitle{A test frame with a very long frame title. What a piece of work is a man. How noble in reason, how infinite in faculties.}
\begin{enumerate}
\item And a few bullest to top it of.
\item And a second bullet.
\end{enumerate}
I know, this is ugly. I just can't figure out why it behaves like this, and I don't have anymore playtime... I've added a pointer to where the problem lies in beamerouterthemeBTH\_msv.sty.
\end{frame}
% -----------------------------
%% All of the following is optional and typically not needed.
%\appendix
%\begin{frame}[allowframebreaks]
% \frametitle{For Further Reading}
%
% \begin{thebibliography}{10}
%
% \beamertemplatebookbibitems
% % Start with overview books.
% \bibitem{Author1990}
% A.~Author.
% \newblock {\em Handbook of Everything}.
% \newblock Some Press, 1990.
%
% \beamertemplatearticlebibitems
% % Followed by interesting articles. Keep the list short.
% \bibitem{Someone2000}
% S.~Someone.
% \newblock On this and that.
% \newblock {\em Journal of This and That}, 2(1):50--100,
% 2000.
% \end{thebibliography}
%\end{frame}
\end{document}