forked from whiteinge/presentations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbeamerdefs.txt
146 lines (88 loc) · 2.46 KB
/
beamerdefs.txt
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
.. Substitutions for Beamer constructs for use with rst2beamer.py
.. vim:ft=rst
.. global substitutions {{{1
.. ............................................................................
.. Insert a beamer frame::
|frame|
|title<| Title |>|
|subtitle<| Subtitle |>|
|end_frame|
.. |frame| raw:: latex
\begin{frame}
.. |end_frame| raw:: latex
\end{frame}
.. |plain| raw:: latex
\begin{frame}[plain]
.. |end_plain| raw:: latex
\end{frame}
.. |title<| raw:: latex
\frametitle{
.. |subtitle<| raw:: latex
\framesubtitle{
.. Mark the beginning of a completely different part of the presentation::
|part<| Unrelated Section Two |>|
.. |part<| raw:: latex
\part{
.. Place a logo text or image that will appear on each slide::
|logo<|
.. image:: logo.pdf
:height: 0.5 cm
:align: right
|>|
.. |logo<| raw:: latex
\logo{
.. generic substitutions {{{1
.. ...........................................................................
.. Generic close block used by most of the following substitutions
.. |>| raw:: latex
}
.. Insert an artibrary pause; useful for enumerations and elsewhere::
* My
* Neat |pause|
* List
.. |pause| raw:: latex
\pause
.. Text alignment substitutions::
|center|
Centered content
|end_center|
.. |center| raw:: latex
\begin{center}
.. |end_center| raw:: latex
\end{center}
.. |left| raw:: latex
\begin{flushleft}
.. |end_left| raw:: latex
\end{flushleft}
.. |right| raw:: latex
\begin{flushright}
.. |end_right| raw:: latex
\end{flushright}
.. inline substitutions {{{1
.. ...........................................................................
.. Inline text styles::
|small<| This is small |>|
.. |small<| raw:: latex
{\small
.. |t_alert<| raw:: latex
\alert{
.. |t_structure<| raw:: latex
\structure{
.. block substitutions {{{1
.. ...........................................................................
.. Example & alert blocks::
|block<| This is a block title |>|
This is the block content
|end_block|
.. |block<| raw:: latex
\begin{block}{
.. |end_block| raw:: latex
\end{block}
.. |example<| raw:: latex
\begin{exampleblock}{
.. |end_example| raw:: latex
\end{exampleblock}
.. |alert<| raw:: latex
\begin{alertblock}{
.. |end_alert| raw:: latex
\end{alertblock}