-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.sty
More file actions
54 lines (41 loc) · 1.18 KB
/
Copy pathstyle.sty
File metadata and controls
54 lines (41 loc) · 1.18 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
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{style}
\usefonttheme{structurebold}
\mode<presentation>
{
% black and white-ish theme
\setbeamertemplate{navigation symbols}{}
\useoutertheme[subsection=false]{miniframes}
\setbeamercolor{separation line}{use=structure,bg=structure.fg!50!bg}
\useinnertheme[]{rectangles}
\usecolortheme{dove} % outer color theme?
\usecolortheme{rose} % inner color theme?
\setbeamercovered{transparent}
\usefonttheme{professionalfonts}
}
\definecolor{darkred}{rgb}{0.8,0.3,0.3}
\definecolor{lighty}{rgb}{0.40,0.47,0.52}
\setbeamercolor{alerted text}{fg=darkred}
\setbeamercolor{example text}{fg=lighty}
\setbeamertemplate{blocks}[rounded][shadow=true]
% greyish box
\newenvironment{exbox}[1]
{\vspace{0.5ex}\begin{exampleblock}{#1}}
{\end{exampleblock}\vspace{0.75ex}}
% blueish box
\newenvironment{bbox}[1]
{\vspace{0.5ex}\begin{block}{#1}}
{\end{block}\vspace{0.75ex}}
% redish box
\newenvironment{alertbbox}[1]
{\vspace{0.5ex}\begin{alertblock}{#1}}
{\end{alertblock}\vspace{0.75ex}}
\setcounter{tocdepth}{1}
\DeclareOption{TOC}{
\AtBeginSection[]
{
\begin{frame}<beamer>{Outline}
\tableofcontents[currentsection]
\end{frame}
}}
\ProcessOptions\relax