Re: Beamer [block-headline-info-tabella]

#47126
Up
0
Down
::


Per il logo ho risolto consultando il topic indicato 😀
Ho ancora, però 🙁 🙁 , una serie di problemi (cercherò di essere quanto più chiaro possibile):

1) Con ciò che ho caricato, se uso l’enviroment , il testo appare, ma il blocco no! Dove può essere il problema?

2) Non compare nemmeno la headline: ho provato un comando (si nel codice di seguito è messo come commento) ma non ottengo il risultato voluto.. io vorrei un testo, centrato, in cui compaia scritto “Pinco Pallo || Titolo delle Tesi”.

3) Nella prima pagina vorrei aggiungere ulteriori informazioni, come relatori, facoltà, ecc. Quale comando uso? e come modifico le grandezze dei caratteri che già spuntano? Volendo invece aggiungere qualche riga come divisore tra Author e Institute, per esempio?

4) Ho provato ad aggiungere una tabella al solito modo, però quando compilo ottengo errori.. come inserisco delle tabelle?

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% PRESENTAZIONE – SLIDE %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% PREAMBOLO %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\documentclass{beamer}
\usetheme[pageofpages=of,% String used between the current page and the
% total page count.
bullet=circle,% Use circles instead of squares for bullets.
titleline=true,% Show a line below the frame title.
alternativetitlepage=true,% Use the fancy title page.
titlepagelogo=unipa,% Logo for the first page.
]{Torino}

\title{TITOLO DELLA TESI \\ SU DUE RIGHE}
\author{Pinco Pallino}
\institute{Università degli Studi di Palermo}
\date{20 Gennaio 1888}
\usepackage[english,italian]{babel}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath,amssymb}
\usepackage{mathtools}
\usepackage{caption}

\newenvironment{sistema}%
{\left\lbrace\begin{array}{@{}l@{}}}%
{\end{array}\right.}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{tikz}

\addtobeamertemplate{headline}{}{%
\begin{tikzpicture}[remember picture,overlay]
\pgfdeclareimage[height=0.11\paperwidth]{logo}{unipalogo}
\node at (current page.south east) [xshift=-0.065\paperwidth,yshift=0.685\paperwidth,opacity=1] (flogo) {\pgfuseimage{logo}};
\end{tikzpicture}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% PROVA PER HEADLINE
%\setbeamertemplate{headline}
% {%
% \insertauthor[width={2cm}, center, respectlinebreaks]
% \insertshorttitle[width={2cm}, center, respectlinebreaks]}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% DOCUMENTO %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\begin{document}
\begin{frame}[t,plain]
\titlepage
\end{frame}

\include{frame/slide01}
\include{frame/slide02}
\include{frame/slide03}

\end{document}

TABELLA

\begin{table}[htbp]
\caption{Valori dei coefficienti tipici per alcuni materiali.}
\label{tab}
\centering
\resizebox{0.5\columnwidth}{!}{%
\begin{tabular}{cccc}
\toprule
materiale & $E$ (GPa) & $G$ (GPa) & $\nu$ \\
\midrule
Alluminio & 70 & 24 & 0.34 \\
Acciao & 210 & 89 & 0.33 \\
Oro & 80 & 28 & 0.42 \\
Argento & 78 & 28 & 0.37 \\
Legno & 120 & 75 & 0.33 \\
Plastica & 70 & 30 & 0.24 \\
\bottomrule
\end{tabular}}
\end{table}

A questo indirizzo c’è un file zip con tutti i file:
http://www.2shared.com/file/ZhDX5jEE/beamer_tex.html

Go to top