If I write my thesis with ClassicThesis, how can I fix beamer layout to get a similar setup?
Does exist a template for this problem?
If I write my thesis with ClassicThesis, how can I fix beamer layout to get a similar setup?
Does exist a template for this problem?
As the comments note, what makes a presentation good is not what makes a thesis good. However, some serif fonts work well in presentations if no one will be seated far from the screen. And especially if the subject matter is literary, it may not be inappropriate for the style of a presentation to echo that of the thesis. Try something like this, which borrows a trick from Gonzalo Medina:
% compile with lualatex or xelatex:
\documentclass[svgnames]{beamer}
\usepackage{booktabs,etoolbox,fontspec,microtype,ragged2e}
\usefonttheme{professionalfonts,serif,structuresmallcapsserif}
\setmainfont[Numbers=OldStyle,SmallCapsFeatures={Kerning=Uppercase}]{Minion Pro}
\linespread{1.0344}
\usecolortheme[named=Maroon]{structure}
\beamertemplatesolidbackgroundcolor{Snow}
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{itemize items}[circle]
\apptocmd{\frame}{\justifying}{}{}
\addtobeamertemplate{block begin}{}{\justifying}
\definecolor{alert}{HTML}{347941}
\setbeamercolor{alerted text}{fg=alert}
\begin{document}
\begin{frame}
\frametitle{informative title}
\framesubtitle{optional subtitle}
The studio was filled with the rich odor of roses, and when the
light summer wind stirred amidst the trees of the garden there came
through the open door the heavy scent of the lilac, or the more
delicate perfume of the pink-flowering thorn.
\begin{itemize}
\justifying
\item An item.
\item An \alert{alerted} item.
\end{itemize}
\end{frame}
\end{document}

Sorry, I can’t help with math, Matlab, or Octave, since my own documents never involve them, but perhaps this is enough to get you started.
classicthesis? Which settings would you like to transfer tobeamer? – Gonzalo Medina Feb 13 '14 at 19:59beamer) mainly for readability reasons. I totally agree that default style withbeameris awful and for example I pretty much enjoy Flip beamer's theme. If matchingclassicthesisis the main concern, you can create your ownbeamertemplate. I'll be difficult to directly help you if you don't provide at least an idea of how a slide would look like. – s__C Feb 13 '14 at 20:19ClassicThesisManual. My question is general (maybe too much general), I would like abeamertypographic style consistent with that of the thesis – marchetto Feb 13 '14 at 20:42classicthesisthat you would like to see in yourbeamerpresentation. – Gonzalo Medina Feb 13 '14 at 20:43