Merge pull request #131 from adunning/master
Realign LaTeX and beamer templates.
This commit is contained in:
commit
d998cfbfc3
2 changed files with 78 additions and 40 deletions
113
default.beamer
113
default.beamer
|
@ -1,4 +1,4 @@
|
||||||
\documentclass[$if(fontsize)$$fontsize$,$endif$$if(handout)$handout,$endif$$if(beamer)$ignorenonframetext,$endif$$for(classoption)$$classoption$$sep$,$endfor$]{$documentclass$}
|
\documentclass[$if(fontsize)$$fontsize$,$endif$$if(lang)$$babel-lang$,$endif$$if(handout)$handout,$endif$$if(beamer)$ignorenonframetext,$endif$$for(classoption)$$classoption$$sep$,$endfor$]{$documentclass$}
|
||||||
$if(theme)$
|
$if(theme)$
|
||||||
\usetheme{$theme$}
|
\usetheme{$theme$}
|
||||||
$endif$
|
$endif$
|
||||||
|
@ -8,6 +8,9 @@ $endif$
|
||||||
$if(fonttheme)$
|
$if(fonttheme)$
|
||||||
\usefonttheme{$fonttheme$}
|
\usefonttheme{$fonttheme$}
|
||||||
$endif$
|
$endif$
|
||||||
|
$if(mainfont)$
|
||||||
|
\usefonttheme{serif} % use mainfont rather than sansfont for slide text
|
||||||
|
$endif$
|
||||||
$if(innertheme)$
|
$if(innertheme)$
|
||||||
\useinnertheme{$innertheme$}
|
\useinnertheme{$innertheme$}
|
||||||
$endif$
|
$endif$
|
||||||
|
@ -17,34 +20,66 @@ $endif$
|
||||||
\setbeamertemplate{caption}[numbered]
|
\setbeamertemplate{caption}[numbered]
|
||||||
\setbeamertemplate{caption label separator}{: }
|
\setbeamertemplate{caption label separator}{: }
|
||||||
\setbeamercolor{caption name}{fg=normal text.fg}
|
\setbeamercolor{caption name}{fg=normal text.fg}
|
||||||
|
$if(fontfamily)$
|
||||||
|
\usepackage[$fontfamilyoptions$]{$fontfamily$}
|
||||||
|
$else$
|
||||||
|
\usepackage{lmodern}
|
||||||
|
$endif$
|
||||||
\usepackage{amssymb,amsmath}
|
\usepackage{amssymb,amsmath}
|
||||||
\usepackage{ifxetex,ifluatex}
|
\usepackage{ifxetex,ifluatex}
|
||||||
\usepackage{fixltx2e} % provides \textsubscript
|
\usepackage{fixltx2e} % provides \textsubscript
|
||||||
\usepackage{lmodern}
|
\ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex
|
||||||
\ifxetex
|
\usepackage[T1]{fontenc}
|
||||||
\usepackage{fontspec,xltxtra,xunicode}
|
\usepackage[utf8]{inputenc}
|
||||||
|
$if(euro)$
|
||||||
|
\usepackage{eurosym}
|
||||||
|
$endif$
|
||||||
|
\else % if luatex or xelatex
|
||||||
|
\ifxetex
|
||||||
|
\usepackage{mathspec}
|
||||||
|
\else
|
||||||
|
\usepackage{fontspec}
|
||||||
|
\fi
|
||||||
\defaultfontfeatures{Mapping=tex-text,Scale=MatchLowercase}
|
\defaultfontfeatures{Mapping=tex-text,Scale=MatchLowercase}
|
||||||
\newcommand{\euro}{€}
|
\newcommand{\euro}{€}
|
||||||
\else
|
$if(mainfont)$
|
||||||
\ifluatex
|
\setmainfont[$mainfontoptions$]{$mainfont$}
|
||||||
\usepackage{fontspec}
|
$endif$
|
||||||
\defaultfontfeatures{Mapping=tex-text,Scale=MatchLowercase}
|
$if(sansfont)$
|
||||||
\newcommand{\euro}{€}
|
\setsansfont[$sansfontoptions$]{$sansfont$}
|
||||||
\else
|
$endif$
|
||||||
\usepackage[T1]{fontenc}
|
$if(monofont)$
|
||||||
\usepackage[utf8]{inputenc}
|
\setmonofont[Mapping=tex-ansi$if(monofontoptions)$,$monofontoptions$$endif$]{$monofont$}
|
||||||
$if(euro)$
|
$endif$
|
||||||
\usepackage{eurosym}
|
$if(mathfont)$
|
||||||
$endif$
|
\setmathfont(Digits,Latin,Greek)[$mathfontoptions$]{$mathfont$}
|
||||||
\fi
|
$endif$
|
||||||
|
$if(CJKmainfont)$
|
||||||
|
\usepackage{xeCJK}
|
||||||
|
\setCJKmainfont[$CJKoptions$]{$CJKmainfont$}
|
||||||
|
$endif$
|
||||||
\fi
|
\fi
|
||||||
% use upquote if available, for straight quotes in verbatim environments
|
% use upquote if available, for straight quotes in verbatim environments
|
||||||
\IfFileExists{upquote.sty}{\usepackage{upquote}}{}
|
\IfFileExists{upquote.sty}{\usepackage{upquote}}{}
|
||||||
% use microtype if available
|
% use microtype if available
|
||||||
\IfFileExists{microtype.sty}{\usepackage{microtype}}{}
|
\IfFileExists{microtype.sty}{%
|
||||||
|
\usepackage{microtype}
|
||||||
|
\UseMicrotypeSet[protrusion]{basicmath} % disable protrusion for tt fonts
|
||||||
|
}{}
|
||||||
|
$if(lang)$
|
||||||
|
\ifxetex
|
||||||
|
\usepackage{polyglossia}
|
||||||
|
\setmainlanguage[$polyglossia-lang.options$]{$polyglossia-lang.name$}
|
||||||
|
$for(polyglossia-otherlangs)$
|
||||||
|
\setotherlanguage[$polyglossia-otherlangs.options$]{$polyglossia-otherlangs.name$}
|
||||||
|
$endfor$
|
||||||
|
\else
|
||||||
|
\usepackage[shorthands=off,$babel-lang$]{babel}
|
||||||
|
\fi
|
||||||
|
$endif$
|
||||||
$if(natbib)$
|
$if(natbib)$
|
||||||
\usepackage{natbib}
|
\usepackage{natbib}
|
||||||
\bibliographystyle{plainnat}
|
\bibliographystyle{$if(biblio-style)$$biblio-style$$else$plainnat$endif$}
|
||||||
$endif$
|
$endif$
|
||||||
$if(biblatex)$
|
$if(biblatex)$
|
||||||
\usepackage{biblatex}
|
\usepackage{biblatex}
|
||||||
|
@ -63,6 +98,7 @@ $highlighting-macros$
|
||||||
$endif$
|
$endif$
|
||||||
$if(verbatim-in-note)$
|
$if(verbatim-in-note)$
|
||||||
\usepackage{fancyvrb}
|
\usepackage{fancyvrb}
|
||||||
|
\VerbatimFootnotes % allows verbatim text in footnotes
|
||||||
$endif$
|
$endif$
|
||||||
$if(tables)$
|
$if(tables)$
|
||||||
\usepackage{longtable,booktabs}
|
\usepackage{longtable,booktabs}
|
||||||
|
@ -72,11 +108,8 @@ $if(tables)$
|
||||||
\def\fnum@table{\tablename~\thetable}
|
\def\fnum@table{\tablename~\thetable}
|
||||||
\makeatother
|
\makeatother
|
||||||
$endif$
|
$endif$
|
||||||
$if(url)$
|
|
||||||
\usepackage{url}
|
|
||||||
$endif$
|
|
||||||
$if(graphics)$
|
$if(graphics)$
|
||||||
\usepackage{graphicx}
|
\usepackage{graphicx,grffile}
|
||||||
\makeatletter
|
\makeatletter
|
||||||
\def\maxwidth{\ifdim\Gin@nat@width>\linewidth\linewidth\else\Gin@nat@width\fi}
|
\def\maxwidth{\ifdim\Gin@nat@width>\linewidth\linewidth\else\Gin@nat@width\fi}
|
||||||
\def\maxheight{\ifdim\Gin@nat@height>\textheight0.8\textheight\else\Gin@nat@height\fi}
|
\def\maxheight{\ifdim\Gin@nat@height>\textheight0.8\textheight\else\Gin@nat@height\fi}
|
||||||
|
@ -105,35 +138,40 @@ $endif$
|
||||||
\frame{\subsectionpage}
|
\frame{\subsectionpage}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$if(links-as-notes)$
|
||||||
|
% Make links footnotes instead of hotlinks:
|
||||||
|
\renewcommand{\href}[2]{#2\footnote{\url{#1}}}
|
||||||
|
$endif$
|
||||||
$if(strikeout)$
|
$if(strikeout)$
|
||||||
\usepackage[normalem]{ulem}
|
\usepackage[normalem]{ulem}
|
||||||
% avoid problems with \sout in headers with hyperref:
|
% avoid problems with \sout in headers with hyperref:
|
||||||
\pdfstringdefDisableCommands{\renewcommand{\sout}{}}
|
\pdfstringdefDisableCommands{\renewcommand{\sout}{}}
|
||||||
$endif$
|
$endif$
|
||||||
\setlength{\parindent}{0pt}
|
|
||||||
\setlength{\parskip}{6pt plus 2pt minus 1pt}
|
|
||||||
\setlength{\emergencystretch}{3em} % prevent overfull lines
|
\setlength{\emergencystretch}{3em} % prevent overfull lines
|
||||||
\providecommand{\tightlist}{%
|
\providecommand{\tightlist}{%
|
||||||
\setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}}
|
\setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}}
|
||||||
$if(numbersections)$
|
$if(numbersections)$
|
||||||
|
\setcounter{secnumdepth}{5}
|
||||||
$else$
|
$else$
|
||||||
\setcounter{secnumdepth}{0}
|
\setcounter{secnumdepth}{0}
|
||||||
$endif$
|
$endif$
|
||||||
$if(verbatim-in-note)$
|
$if(dir)$
|
||||||
\VerbatimFootnotes % allows verbatim text in footnotes
|
|
||||||
$endif$
|
|
||||||
$if(lang)$
|
|
||||||
\ifxetex
|
\ifxetex
|
||||||
\usepackage{polyglossia}
|
% load bidi as late as possible as it modifies e.g. graphicx
|
||||||
\setmainlanguage{$mainlang$}
|
$if(latex-dir-rtl)$
|
||||||
\setotherlanguages{$for(otherlang)$$otherlang$$sep$,$endfor$}
|
\usepackage[RTLdocument]{bidi}
|
||||||
\else
|
$else$
|
||||||
\usepackage[shorthands=off,$lang$]{babel}
|
\usepackage{bidi}
|
||||||
|
$endif$
|
||||||
|
\fi
|
||||||
|
\ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex
|
||||||
|
\TeXXeTstate=1
|
||||||
|
\newcommand{\RL}[1]{\beginR #1\endR}
|
||||||
|
\newcommand{\LR}[1]{\beginL #1\endL}
|
||||||
|
\newenvironment{RTL}{\beginR}{\endR}
|
||||||
|
\newenvironment{LTR}{\beginL}{\endL}
|
||||||
\fi
|
\fi
|
||||||
$endif$
|
$endif$
|
||||||
$for(header-includes)$
|
|
||||||
$header-includes$
|
|
||||||
$endfor$
|
|
||||||
|
|
||||||
$if(title)$
|
$if(title)$
|
||||||
\title{$title$}
|
\title{$title$}
|
||||||
|
@ -145,6 +183,9 @@ $if(author)$
|
||||||
\author{$for(author)$$author$$sep$ \and $endfor$}
|
\author{$for(author)$$author$$sep$ \and $endfor$}
|
||||||
$endif$
|
$endif$
|
||||||
\date{$date$}
|
\date{$date$}
|
||||||
|
$for(header-includes)$
|
||||||
|
$header-includes$
|
||||||
|
$endfor$
|
||||||
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
$if(title)$
|
$if(title)$
|
||||||
|
|
|
@ -110,7 +110,7 @@ $highlighting-macros$
|
||||||
$endif$
|
$endif$
|
||||||
$if(verbatim-in-note)$
|
$if(verbatim-in-note)$
|
||||||
\usepackage{fancyvrb}
|
\usepackage{fancyvrb}
|
||||||
\VerbatimFootnotes
|
\VerbatimFootnotes % allows verbatim text in footnotes
|
||||||
$endif$
|
$endif$
|
||||||
$if(tables)$
|
$if(tables)$
|
||||||
\usepackage{longtable,booktabs}
|
\usepackage{longtable,booktabs}
|
||||||
|
@ -145,9 +145,6 @@ $if(numbersections)$
|
||||||
$else$
|
$else$
|
||||||
\setcounter{secnumdepth}{0}
|
\setcounter{secnumdepth}{0}
|
||||||
$endif$
|
$endif$
|
||||||
$if(verbatim-in-note)$
|
|
||||||
\VerbatimFootnotes % allows verbatim text in footnotes
|
|
||||||
$endif$
|
|
||||||
$if(dir)$
|
$if(dir)$
|
||||||
\ifxetex
|
\ifxetex
|
||||||
% load bidi as late as possible as it modifies e.g. graphicx
|
% load bidi as late as possible as it modifies e.g. graphicx
|
||||||
|
|
Loading…
Add table
Reference in a new issue