summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/beamer2thesis/beamer2thesis.tex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2012-08-27 22:12:01 +0000
committerKarl Berry <karl@freefriends.org>2012-08-27 22:12:01 +0000
commita65852350dd289d0de23e9b5019613e89de47a4e (patch)
tree8f6ed8413f7d533fae3467714a32b0a1f24de2f9 /Master/texmf-dist/doc/latex/beamer2thesis/beamer2thesis.tex
parent8242aaa29f30ed9c3abea253edf12970cc50634c (diff)
beamer2thesis (27aug12)
git-svn-id: svn://tug.org/texlive/trunk@27539 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/beamer2thesis/beamer2thesis.tex')
-rw-r--r--Master/texmf-dist/doc/latex/beamer2thesis/beamer2thesis.tex38
1 files changed, 35 insertions, 3 deletions
diff --git a/Master/texmf-dist/doc/latex/beamer2thesis/beamer2thesis.tex b/Master/texmf-dist/doc/latex/beamer2thesis/beamer2thesis.tex
index e9962185a05..2b593e56ff5 100644
--- a/Master/texmf-dist/doc/latex/beamer2thesis/beamer2thesis.tex
+++ b/Master/texmf-dist/doc/latex/beamer2thesis/beamer2thesis.tex
@@ -1,10 +1,15 @@
\documentclass{beamer}
\usetheme[titlepagelogo=logopolito,% Logo for the first page
- ]{TorinoTh}
+ language=english
+ ]{TorinoTh}
+
+\usepackage[beamer,customcolors]{hf-tikz}
+\hfsetfillcolor{alerted text.fg!10}
+\hfsetbordercolor{alerted text.fg}
\author{Claudio Fiandrino}
\rel{Mario Rossi}
-\title{Beamer2Thesis 2.1, thesis theme for Beamer }
+\title{Beamer2Thesis 2.2, thesis theme for Beamer}
\ateneo{Politecnico di Torino}
\date{\today}
@@ -54,5 +59,32 @@ If you want to highlight your text out of the enviroment \emph{itemize}, Beamer2
Of course, the color used, is set accordingly to your choice in the configuration phase.
\end{frame}
+\begin{frame}[fragile]{Highlighting formulas}
+\begin{itemize}
+\item The package \href{http://www.ctan.org/pkg/hf-tikz}{hf-tikz} allows to highlight formulas and formula parts in Beamer with overlay specifications
+\item The adaptation of colors to the theme could be done in this way:
+\begin{verbatim}
+\usepackage[beamer,customcolors]{hf-tikz}
+\hfsetfillcolor{alerted text.fg!10}
+\hfsetbordercolor{alerted text.fg}
+\end{verbatim}
+\item \highlight{Two compilation runs} are required to get the right result!
+\item Read the package documentation to find more options; an example will be provided in the next frame.
+\end{itemize}
+\end{frame}
+
+\begin{frame}[fragile]{Highlighting formulas (II)}
+\begin{itemize}
+\item Example:
+\[\tikzmarkin<2->{a}x+\tikzmarkin<1>{b}y\tikzmarkend{b}=10\tikzmarkend{a}\]
+\item<2-> Code:
+\begin{verbatim}
+\[\tikzmarkin<2->{a}x+
+ \tikzmarkin<1>{b}y\tikzmarkend{b}
+ =10\tikzmarkend{a}\]
+\end{verbatim}
+\end{itemize}
+\end{frame}
+
\input{content_end}
-\end{document} \ No newline at end of file
+\end{document}