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
|
\documentclass[hyperref={pdfauthor=Fiandrino Claudio}]{beamer}
\usetheme[language=italian,% Language used: default is english
titlepagelogo=logopolito,% Logo for the first page
bullet=triangle,% Avaiable bullets are: square,diamond,triangle,circle; default is circle
pageofpages=of,% String used between the current page and the total page count
titleline=true,% Show a line below the frame title
color=green,% Set the color: default is blue, are also avaiable green and red
secondcandidate=false,% Option to introduce the second candidate: allows to use command \secondcandidate
secondlogo=false% Option to introduce the second candidate: allows to use the proper command
]{TorinoTh}
\author{Claudio Fiandrino}
\rel{Mario Rossi}
\title{Beamer2Thesis, thesis theme for Beamer}
\ateneo{Politecnico di Torino}
\date{\today}
\begin{document}
\input{content_initial_ita}
\begin{frame}[t,fragile]{Configurazione}
\begin{itemize}
\item La configurazione con il colore attuale è:
\begin{itemize}
\item \verb!language=italian!
\item \verb!titlepagelogo=name-of-the-logo!
\item \verb!bullet=triangle!
\item \verb!pageofpages=of!
\item \verb!titleline=true!
\item \verb!color=green!
\item \verb!secondcandidate=false!
\item \verb!secondlogo=false!
\end{itemize}
\end{itemize}
\end{frame}
\begin{tframe}{Comportamento con alert}
Con la colorazione verde, un testo evidenziato viene presentato:
\begin{itemize}
\item<+-| alert@+> Apple
\item<+-| alert@+> Peach
\end{itemize}
\end{tframe}
\input{content_end_ita.tex}
\end{document}
|