neo-layout/latex/XeTeX/xelatex-beamer-vorlage.tex

35 lines
1002 B
TeX
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

\documentclass[xcolor=dvipsnames]{beamer}
\usepackage{beamerthemesplit}
% Grundfarbe
\usecolortheme[named=Brown]{structure}
% kräftige Farben
\usecolortheme{orchid}
\usecolortheme{whale}
% Rundungen
\setbeamertemplate{items}[circle]
\setbeamertemplate{blocks}[rounded][shadow=true]
% keine Navigationsleiste
\setbeamertemplate{navigation symbols}{}
% schmale Infoleisten
\useoutertheme{infolines}
% keine Schriftanpassung wegen Verwendung von Linux Biolinum als Schriftart (s.u.)
\usefonttheme{professionalfonts}
% Schriftart (vierte und fünfte Zeile eigentlich überflüssig)
\usepackage{xltxtra} % lädt auch fixltx2e, etex, fontspec, xunicode …
\usepackage{polyglossia}
\setdefaultlanguage[spelling=new, latesthyphen=true]{german}
\setmainfont{Linux Libertine O}
\setromanfont{Linux Libertine O}
\setsansfont{Linux Biolinum O}
\setcounter{tocdepth}{1}
\begin{document}
\begin{frame}{Test}
Hier folgt ausſchließlich Text …
\end{frame}
\end{document}