• R/O
  • SSH

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisiond80b5df507ea2a621aae967c0ab412dccb254148 (tree)
Zeit2018-02-25 07:05:39
AutorLorenzo Isella <lorenzo.isella@gmai...>
CommiterLorenzo Isella

Log Message

Now the blackboard effect is complete.

Ändern Zusammenfassung

Diff

diff -r ef98c617bb67 -r d80b5df507ea latex-documents/test_font_beamer.tex
--- a/latex-documents/test_font_beamer.tex Fri Feb 23 17:06:27 2018 +0100
+++ b/latex-documents/test_font_beamer.tex Sat Feb 24 23:05:39 2018 +0100
@@ -2,6 +2,7 @@
22 \usepackage{graphicx}
33 % \usepackage[T1]{fontenc}
44 \usepackage{emerald}
5+\usepackage{tikz}
56
67
78
@@ -38,6 +39,28 @@
3839 \setbeamerfont{itemize/enumerate subbody}{size=\footnotesize}
3940 \setbeamerfont{itemize/enumerate subitem}{size=\footnotesize}
4041
42+
43+%% Grey (gray) Background Colour
44+\setbeamercolor{background canvas}{bg=gray!30!black}
45+
46+%% Random Dust Trails
47+%\pgfmathsetseed{\number\pdfrandomseed} % seed for random generator
48+\setbeamertemplate{background}{
49+ \begin{tikzpicture}
50+ \useasboundingbox (0,0) rectangle (\the\paperwidth, \the\paperheight);
51+ \foreach \i in {1,...,30} {
52+ \pgfmathsetmacro{\x}{random(0,10000)/5000-1}%
53+ \pgfmathsetmacro{\y}{random(0,10000)/10000-0.1}%
54+ \pgfmathsetmacro{\r}{random(0,10000)/1000-5}%
55+ \rotatebox{\r}{
56+ \pgftext[at=\pgfpoint{\x\paperwidth}{\y\paperheight}, left, base]{\includegraphics[width=\textwidth]{paintstroke.png}}
57+ }
58+ };
59+ \end{tikzpicture}
60+}
61+
62+
63+
4164 % Now try to set te Augie font everywhere
4265
4366 \setbeamerfont{framesubtitle}{series=\ECFAugie}
@@ -48,6 +71,8 @@
4871 \setbeamerfont{date}{series=\ECFAugie}
4972 \setbeamerfont{frametitle}{series=\ECFAugie}
5073 \setbeamerfont{item}{series=\ECFAugie}
74+%% use a small dash ('-') for a bulletpoint list
75+\setbeamertemplate{itemize item}{\usebeamercolor[fg]{item}\small\ECFAugie{-}}
5176
5277
5378 % see https://tex.stackexchange.com/questions/320223/how-to-enforce-a-font-series-in-beamer-for-normal-default-text/320244
@@ -104,11 +129,17 @@
104129 \item if tampered with, the tampering is easy to spot
105130 \end{enumerate}
106131 And who invented it?
132+
133+\begin{equation}
134+\nabla^{2}\phi=0
135+\end{equation}
136+\begin{itemize}
137+\item not bad at all!
138+\end{itemize}
139+
107140 \end{frame}
108141
109142
110143
111-
112-
113144 \end{document}
114145