1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
%!TEX TS-program = xelatex
%!TEX encoding = UTF-8 Unicode
\documentclass{beamer}
\usepackage{polyglossia}
\usepackage{amsmath,amssymb}
\usepackage{listings,color}
\usepackage{subfig}
\usepackage{graphicx}
\usepackage{xltxtra,fontspec,xunicode}
\usepackage{fancyvrb}
\usepackage{lxextras}
\defaultfontfeatures{Scale=MatchLowercase}
\setromanfont{TheMixB W5 Plain}
\setsansfont{TheMixB W7 Bold}
\setmonofont[Scale=0.7]{Source Code Pro}
\linespread{0.5}
\IfFileExists{.lxformat_microconsult}
{
\mode<presentation>{\usepackage{foreignthemes/microconsult/beamerthememicroconsult}}
\institute{MicroConsult GmbH / Linutronix GmbH}
}{
\mode<presentation>{\usetheme{linutronix}}
\institute{Linutronix GmbH}
}
\definecolor{lbcolor}{RGB}{255,210,150}
%\lstset{
%language=C++,
%numbers=left,
%stepnumber=1,
%numbersep=5pt,
%breaklines=true,
%breakautoindent=true,
%postbreak=\space,
%tabsize=2,
%basicstyle=\ttfamily\small,
%showspaces=false,
%showstringspaces=false,
%extendedchars=true,
%backgroundcolor=\color{lbcolor},
%keywordstyle=\bf ,
%commentstyle=\color{blue},
%stringstyle=\color{red}
%}
\begin{document}
\IfFileExists{.lxformat_microconsult}
{
% no copyright footer
}{
\setbeamertemplate{footline}[text line]{\parbox{\linewidth}{
\copyright{} \the\year\ by \insertinstitute \hfill
\insertshortauthor \hfill
\insertpagenumber}
}
}
\input{section}
|