diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/beamer2thesis/beamer2thesis.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/beamer2thesis/beamer2thesis.tex | 38 |
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} |