Beamer 类似于 ClassicThesis

Beamer 类似于 ClassicThesis

如果我用 撰写论文ClassicThesis,我该如何修复beamer布局以获得类似的设置?

是否存在针对此问题的模板?

答案1

正如评论所指出的,演讲之所以精彩,并不是论文之所以精彩。然而,如果没有人坐在屏幕远处,一些衬线字体在演讲中效果很好。尤其是如果主题是文学,演讲的风格与论文的风格相呼应可能并不不合适。试试这样的方法,它借鉴了贡萨洛·梅迪纳

% 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}

示例代码的输出

抱歉,我无法提供数学、Matlab 或 Octave 方面的帮助,因为我自己的文档从未涉及它们,但也许这足以帮助您入门。

相关内容