summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/beamer2thesis
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
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')
-rw-r--r--Master/texmf-dist/doc/latex/beamer2thesis/README12
-rw-r--r--Master/texmf-dist/doc/latex/beamer2thesis/beamer2thesis.pdfbin147622 -> 166377 bytes
-rw-r--r--Master/texmf-dist/doc/latex/beamer2thesis/beamer2thesis.tex38
-rw-r--r--Master/texmf-dist/doc/latex/beamer2thesis/beamer2thesis_ita.pdfbin146395 -> 165613 bytes
-rw-r--r--Master/texmf-dist/doc/latex/beamer2thesis/beamer2thesis_ita.tex34
-rw-r--r--Master/texmf-dist/doc/latex/beamer2thesis/content_end.tex21
-rw-r--r--Master/texmf-dist/doc/latex/beamer2thesis/content_end_ita.tex17
-rw-r--r--Master/texmf-dist/doc/latex/beamer2thesis/content_initial.tex34
-rw-r--r--Master/texmf-dist/doc/latex/beamer2thesis/content_initial_ita.tex31
-rw-r--r--Master/texmf-dist/doc/latex/beamer2thesis/license2
10 files changed, 147 insertions, 42 deletions
diff --git a/Master/texmf-dist/doc/latex/beamer2thesis/README b/Master/texmf-dist/doc/latex/beamer2thesis/README
index d553449dc1d..ab7fb2794d1 100644
--- a/Master/texmf-dist/doc/latex/beamer2thesis/README
+++ b/Master/texmf-dist/doc/latex/beamer2thesis/README
@@ -1,11 +1,11 @@
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
-% Copyright 2011 Claudio Fiandrino
+% Copyright 2011-2012 Claudio Fiandrino
%
-% Beamer2Thesis - 2.0
+% Beamer2Thesis - 2.2
%
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Beamer2Thesis is a Beamer Theme to create presentation for a thesis:
-it introduces specific commands. Guides are provided in english and
-italian.
+it introduces specific commands. Guides are provided, as presentations,
+in english and italian.
diff --git a/Master/texmf-dist/doc/latex/beamer2thesis/beamer2thesis.pdf b/Master/texmf-dist/doc/latex/beamer2thesis/beamer2thesis.pdf
index fd04d50f636..030361a3530 100644
--- a/Master/texmf-dist/doc/latex/beamer2thesis/beamer2thesis.pdf
+++ b/Master/texmf-dist/doc/latex/beamer2thesis/beamer2thesis.pdf
Binary files differ
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}
diff --git a/Master/texmf-dist/doc/latex/beamer2thesis/beamer2thesis_ita.pdf b/Master/texmf-dist/doc/latex/beamer2thesis/beamer2thesis_ita.pdf
index c57755133c1..0fffb1a5684 100644
--- a/Master/texmf-dist/doc/latex/beamer2thesis/beamer2thesis_ita.pdf
+++ b/Master/texmf-dist/doc/latex/beamer2thesis/beamer2thesis_ita.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/beamer2thesis/beamer2thesis_ita.tex b/Master/texmf-dist/doc/latex/beamer2thesis/beamer2thesis_ita.tex
index e20904099dc..4087b96e732 100644
--- a/Master/texmf-dist/doc/latex/beamer2thesis/beamer2thesis_ita.tex
+++ b/Master/texmf-dist/doc/latex/beamer2thesis/beamer2thesis_ita.tex
@@ -3,14 +3,17 @@
language=italian,
bullet=triangle,
color=green,
- coding=utf8x
]{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}
\ateneo{Politecnico di Torino}
-\date{2 Novembre 2011}
+\date{\today}
\begin{document}
\input{content_initial_ita.tex}
@@ -54,5 +57,32 @@ Se volete evidenziare il vostro testo al di fuori dell'ambiente \emph{itemize},
Ovviamente, il colore utilizzato è quello da voi scelto nel preambolo.
\end{frame}
+\begin{frame}[fragile]{Evidenziare formule matematiche}
+\begin{itemize}
+\item Il pacchetto \href{http://www.ctan.org/pkg/hf-tikz}{hf-tikz} permette di evidenziare formule matematiche (completamente o in parte) in Beamer con animazioni semplici
+\item Si possono adattare i colori del tema così:
+\begin{verbatim}
+\usepackage[beamer,customcolors]{hf-tikz}
+\hfsetfillcolor{alerted text.fg!10}
+\hfsetbordercolor{alerted text.fg}
+\end{verbatim}
+\item È necessario \highlight{compilare due volte} per ottenere il risultato voluto!
+\item Si legga la documentazione del pacchetto per ulteriori opzioni; un esempio di utilizzo è riportato nella diapositiva successiva.
+\end{itemize}
+\end{frame}
+
+\begin{frame}[fragile]{Evidenziare formule matematiche (II)}
+\begin{itemize}
+\item Esempio:
+\[\tikzmarkin<2->{a}x+\tikzmarkin<1>{b}y\tikzmarkend{b}=10\tikzmarkend{a}\]
+\item<2-> Codice:
+\begin{verbatim}
+\[\tikzmarkin<2->{a}x+
+ \tikzmarkin<1>{b}y\tikzmarkend{b}
+ =10\tikzmarkend{a}\]
+\end{verbatim}
+\end{itemize}
+\end{frame}
+
\input{content_end_ita}
\end{document} \ No newline at end of file
diff --git a/Master/texmf-dist/doc/latex/beamer2thesis/content_end.tex b/Master/texmf-dist/doc/latex/beamer2thesis/content_end.tex
index 881d07a03cf..c44b1a91705 100644
--- a/Master/texmf-dist/doc/latex/beamer2thesis/content_end.tex
+++ b/Master/texmf-dist/doc/latex/beamer2thesis/content_end.tex
@@ -56,14 +56,11 @@ text
\begin{frame}[t,fragile]{Suggestions (III)}
\begin{itemize}
-\item From version 2.1, just when you use the option \highlight{language} italian, the command \verb!\today! does not work properly because the translation of the language is not automatic. Therefore, I suggest you to insert the date in a more \emph{traditional} way:
-\begin{itemize}
-\item \verb!\date{day Month year}!
-\end{itemize}
-For example:
-\begin{itemize}
-\item \verb!\date{2 November 2011}!
-\end{itemize}
+\item If the title does not fit in the footer box, it is possible to exploit the so called \highlight{shorttitle}; an example:
+\begin{verbatim}
+\title[short title]{Long title of the thesis}
+\end{verbatim}
+In this way the long title is just placed in the titlepage.
\item In case there are more than two supervisors or assistansupervisors, I suggest you to insert them through commands reported in \ref{secondrel} and separate names thanks to a comma.
\end{itemize}
\end{frame}
@@ -86,11 +83,15 @@ Here are shortly reported the main features of the releases:
\end{itemize}
\item release 2.0:
\begin{itemize}
-\item third logo, assistant supervisor, new ways to highlight, new command for the titlepage, new enviroments \emph{adv} and \emph{disadv}, \XeTeX\, and \XeLaTeX\, support, block;
+\item third logo, assistant supervisor, new ways to highlight, new command for the titlepage, new enviroments \emph{adv} and \emph{disadv}, \XeTeX\, and \XeLaTeX\, support, blocks;
\end{itemize}
\item release 2.1:
\begin{itemize}
-\item coding option, second supervisor, second assistantsupervisor.
+\item coding option, second supervisor, second assistantsupervisor;
+\end{itemize}
+\item release 2.2:
+\begin{itemize}
+\item language, short title, highlighting formulas.
\end{itemize}
\end{itemize}
\end{tframe}
diff --git a/Master/texmf-dist/doc/latex/beamer2thesis/content_end_ita.tex b/Master/texmf-dist/doc/latex/beamer2thesis/content_end_ita.tex
index 3008f4de23e..82b9b113f7d 100644
--- a/Master/texmf-dist/doc/latex/beamer2thesis/content_end_ita.tex
+++ b/Master/texmf-dist/doc/latex/beamer2thesis/content_end_ita.tex
@@ -56,14 +56,11 @@ text
\begin{frame}[t,fragile]{Suggerimenti (III)}
\begin{itemize}
-\item Dalla versione 2.1, soltanto utilizzando l'opzione \highlight{language} italian, il comando \verb!\today! non funziona correttamente in quanto non viene tradotto automaticamente. Si consiglia pertando di inserire la data in modo \emph{tradizionale} con:
-\begin{itemize}
-\item \verb!\date{giorno Mese anno}!
-\end{itemize}
-Ad esempio:
-\begin{itemize}
-\item \verb!\date{2 Novembre 2011}!
-\end{itemize}
+\item Se il titolo è troppo lungo rischia di non essere perfettamente inserito a fondo diapositiva, perciò si può utilizzare il \highlight{titolo corto}; ad esempio:
+\begin{verbatim}
+\title[Titolo corto]{Titolo lungo}
+\end{verbatim}
+In questo modo il titolo lungo viene soltanto inserito nel frontespizio.
\item In caso si abbiano più di due relatori o correlatori, suggerisco di inserirli con i comandi riportati in slide \ref{secondrel} separati da una virgola.
\end{itemize}
\end{frame}
@@ -92,6 +89,10 @@ Di seguito sono riportate le principali caratteristiche delle versioni:
\begin{itemize}
\item opzione sulla codifica, secondo relatore, secondo correlatore.
\end{itemize}
+\item versione 2.2:
+\begin{itemize}
+\item supporto per più lingue, titolo corto, suggerimento per evidenziare formule matematiche.
+\end{itemize}
\end{itemize}
\end{tframe}
diff --git a/Master/texmf-dist/doc/latex/beamer2thesis/content_initial.tex b/Master/texmf-dist/doc/latex/beamer2thesis/content_initial.tex
index e2805bfc31a..ac387f3a373 100644
--- a/Master/texmf-dist/doc/latex/beamer2thesis/content_initial.tex
+++ b/Master/texmf-dist/doc/latex/beamer2thesis/content_initial.tex
@@ -55,6 +55,11 @@ As an alternative, Beamer2Thesis can be downloaded from my personal page as a zi
\begin{itemize}
\item \href{http://claudiofiandrino.altervista.org/latex\_projects.html}{http://claudiofiandrino.altervista.org/latex\_projects.html}
\end{itemize}
+or in the official page:
+\begin{itemize}
+\item \href{http://cfiandra.github.com/Beamer2Thesis/}{http://cfiandra.github.com/Beamer2Thesis/}
+\end{itemize}
+
It can be installed with the standard procedure used to install a common package: I suggest you to read a short guide I have written
\begin{itemize}
\item \href{http://claudiofiandrino.altervista.org/LaTeX/package_installation.pdf}{download the guide here}
@@ -164,16 +169,31 @@ There are several ways to do it (for people highly capable in \LaTeX\, this is n
\begin{frame}[t,fragile]{Languages}
\begin{itemize}
-\item There are two languages avaiable:
+\item All languages can be supported, but the two main ones are:
\begin{itemize}
-\item english (default)
+\item english
\item italian
\end{itemize}
-\item The choice of the language implies that in the titlepage, date and labels (Supervisor, Candidate, Relatore, Candidato) are shown with the proper language in an automatic way
-\item To set the italian language, use in the configuration phase:
-\verb!language=italian!
+\item The choice of one of the main languages implies that in the titlepage, date and labels (Supervisor, Candidate, Relatore, Candidato) are shown with the proper language in an automatic way
+\item To set the italian language, for example, use in the configuration phase:
+\verb!language=italian!; the name should be the one used by the package babel or by \verb!\setmainfont! with \XeLaTeX
+\item If the language selected is not one of the two main languages, then labels in the titlepage should be introduced by the user (see the example in the next frame)
+\end{itemize}
+\end{frame}
+
+\begin{frame}[t,fragile]{Languages (II)}
+\begin{itemize}
+\item Example with spanish language:
+\begin{verbatim}
+\usetheme[language=spanish,...]{TorinoTh}
+\setrellabel{Relator Tesis}
+\setcandidatelabel{Candidato}
+\setassistentsupervisorlabel{Co Tesis}
+\setsubject{Tesis}
+\end{verbatim}
+\item Commands illustrated are mandatory when \highlight{not using} a main language
\item If you have already set a language and you change, it may happen that, the first time you compile, this error occurs: \begin{flushleft}
-\highlight{! Package babel Error: You haven't loaded the option english/italian yet}
+\highlight{! Package babel Error: You haven't loaded the option -language- yet}
\end{flushleft}
do not be afraid and compile a second time: it will work!!
\end{itemize}
@@ -387,4 +407,4 @@ More in general, Beamer provide three \emph{block} environments:
\item \highlight{exampleblock}
\end{itemize}
To have more details, not only on this argument, I suggest to read the \href{http://mirrors.ctan.org/macros/latex/contrib/beamer/doc/beameruserguide.pdf}{beameruserguide}.
-\end{frame} \ No newline at end of file
+\end{frame}
diff --git a/Master/texmf-dist/doc/latex/beamer2thesis/content_initial_ita.tex b/Master/texmf-dist/doc/latex/beamer2thesis/content_initial_ita.tex
index dcd6856b941..926bcd80067 100644
--- a/Master/texmf-dist/doc/latex/beamer2thesis/content_initial_ita.tex
+++ b/Master/texmf-dist/doc/latex/beamer2thesis/content_initial_ita.tex
@@ -54,6 +54,11 @@ In alternativa, Beamer2Thesis può essere scaricato dalla mia pagina personale c
\begin{itemize}
\item \href{http://claudiofiandrino.altervista.org/latex\_projects.html}{http://claudiofiandrino.altervista.org/latex\_projects.html}
\end{itemize}
+o dalla pagina ufficiale:
+\begin{itemize}
+\item \href{http://cfiandra.github.com/Beamer2Thesis/}{http://cfiandra.github.com/Beamer2Thesis/}
+\end{itemize}
+
Ovviamente deve essere installato seguendo la procedura standard di installazione manuale di un pacchetto: suggerisco, ancora di leggere la guida di Enrico Gregorio
\end{tframe}
@@ -151,16 +156,32 @@ Ci sono diversi modi per inserire il vostro logo (per persone molto esperte in \
\begin{frame}[t,fragile]{Lingue}
\begin{itemize}
-\item Sono disponibili due lingue:
+\item Tutte le lingue sono disponibili, ma le due principali sono:
\begin{itemize}
-\item inglese (default)
+\item inglese
\item italiano
\end{itemize}
-\item La scelta delle lingue implica che, nella pagina iniziale, date e label (Supervisor, Candidate, Relatore, Candidato) siano riportate esattamente in modo automatico
-\item Per selezionare la lingua italiana, usate nel preambolo:
+\item La scelta di una delle due lingue principali implica che, nella pagina iniziale, date e label (Supervisor, Candidate, Relatore, Candidato) siano riportate esattamente in modo automatico
+\item Per selezionare la lingua italiana, ad esempio, usate nel preambolo:
\verb!language=italian!
+il nome deve essere quello utilizzato dal pacchetto babel or dal comando \verb!\setmainfont! con \XeLaTeX
+\item Se la lingua selezionata non è una delle due principali, occorre ridefinire manualmente le label del frontespizio (si riporta un esempio nella diapositiva successiva)
+\end{itemize}
+\end{frame}
+
+\begin{frame}[t,fragile]{Lingue (II)}
+\begin{itemize}
+\item Un esempio con la lingua spagnola:
+\begin{verbatim}
+\usetheme[language=spanish,...]{TorinoTh}
+\setrellabel{Relator Tesis}
+\setcandidatelabel{Candidato}
+\setassistentsupervisorlabel{Co Tesis}
+\setsubject{Tesis}
+\end{verbatim}
+\item I comandi illustrati sono obbligatori quando \highlight{non si utilizza} una delle due lingue principali
\item Se avete scelto una lingua e volete cambiarla, può succedere che, la prima compilazione dia questo errore: \begin{flushleft}
-\highlight{! Package babel Error: You haven't loaded the option english/italian yet}
+\highlight{! Package babel Error: You haven't loaded the option -lingua- yet}
\end{flushleft}
non spaventatevi e compilate nuovamente: funzionerà!
\end{itemize}
diff --git a/Master/texmf-dist/doc/latex/beamer2thesis/license b/Master/texmf-dist/doc/latex/beamer2thesis/license
index e1e4d0efefb..a5e7ac8e25a 100644
--- a/Master/texmf-dist/doc/latex/beamer2thesis/license
+++ b/Master/texmf-dist/doc/latex/beamer2thesis/license
@@ -1,6 +1,6 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
-% Copyright 2011 Claudio Fiandrino
+% Copyright 2011-2012 Claudio Fiandrino
%
% Beamer2Thesis
%