Risposte nei forum create
-
AutoreRisposte
-
::
La necessità è semplicemente quella di adattare meglio la grandezza della presentazione al contenuto della tabella, riducendo gli spazi bianchi intorno (del tutto superflui) e mantenendo caratteri larghi, quindi più leggibili.
Invece riscalando la grandezza della tabella, le dimensioni dei caratteri risulterebbero ridotte
::
Sono riuscito a modificare la dimensione delle frame come volevo con questo codice, che sostituisce beamer0.tex nel primo post di questo thread:`\documentclass{beamer}
\usepackage{standalone}
\renewcommand{\familydefault}{\sfdefault}
\usepackage{color,soul}
\usepackage{booktabs}
\usepackage{tabu}
\usepackage{marvosym}
\usepackage{graphicx}
\usepackage{caption}\newlength{\FramePageHeight}
\newlength{\FramePageWidth}
\newlength{\FrameTextHeight}
\newlength{\FrameTextWidth}\setlength{\FramePageHeight}{\the\paperheight}
\setlength{\FramePageWidth}{\the\paperwidth}
\setlength{\FrameTextHeight}{\the\textheight}
\setlength{\FrameTextWidth}{\the\textwidth}\newlength{\CustomPageHeight}
\newlength{\CustomPageWidth}
\newlength{\CustomTextHeight}
\newlength{\CustomTextWidth}\newsavebox{\CustomBoxTable}
\usepackage{lipsum}
\title{the presentation}
\date{}
\begin{document}
\begin{frame}
\maketitle
\end{frame}
\begin{frame}
\lipsum[1]
\end{frame}\savebox{\CustomBoxTable}{\includegraphics{european_insurance_tab}}
\settoheight{\CustomPageHeight}{\usebox{\CustomBoxTable} }
\settowidth{\CustomPageWidth}{\usebox{\CustomBoxTable} }
\settoheight{\CustomTextHeight}{\usebox{\CustomBoxTable} }
\settowidth{\CustomTextWidth}{\usebox{\CustomBoxTable} }\addtolength{\CustomPageHeight}{15mm}
\addtolength{\CustomPageWidth}{15mm}\pdfpagewidth \the\CustomPageWidth
\pdfpageheight \the\CustomPageHeight\begin{frame}
\setlength{\textheight}{\the\CustomTextHeight}
\setlength{\textwidth}{\the\CustomTextWidth}
\begin{center}
\usebox{\CustomBoxTable}
\end{center}
\end{frame}\pdfpagewidth \the\FramePageWidth
\pdfpageheight \the\FramePageHeight
\setlength{\textheight}{\the \FrameTextHeight}
\setlength{\textwidth}{\the \FrameTextWidth}
\begin{frame}
\lipsum[2]
\end{frame}\end{document}
`
Adesso però ho un nuovo problema: nella frame ridimensionata trovo i simboli di navigazione al centro della pagina. come faccio a riportarli nell’angolo in basso a destra?
::
Grazie per la risposta, ma non è il risultato che speravo:(
infatti rimangono margini laterali larghi e il testo si riduce molto.
Io starei cercando di trasformare la tabella ottenuta con standalone in una frame con dimensioni modificate, ma non sono molto pratico di latex, né di queste funzioni particolari come beamer o standalone.Grazie lo stesso
-
AutoreRisposte