From 84335edbad88dbc316bb7b5d00e717537fc21f80 Mon Sep 17 00:00:00 2001 From: Carsten Gips Date: Thu, 4 Aug 2016 16:10:02 +0200 Subject: Load "beamerarticle" first (if needed) The beamerarticle package needs to be loaded directly after the documentclass declaration. Loading it later (e.g. using the -H option) leads to several errors due to package dependencies. This patch also introduces a new variable "beamerarticle" to activate the beamerarticle package. --- default.latex | 3 +++ 1 file changed, 3 insertions(+) diff --git a/default.latex b/default.latex index 67faf0330..15fecad55 100644 --- a/default.latex +++ b/default.latex @@ -1,4 +1,7 @@ \documentclass[$if(fontsize)$$fontsize$,$endif$$if(lang)$$babel-lang$,$endif$$if(papersize)$$papersize$paper,$endif$$for(classoption)$$classoption$$sep$,$endfor$]{$documentclass$} +$if(beamerarticle)$ +\usepackage{beamerarticle} % needs to be loaded first +$endif$ $if(fontfamily)$ \usepackage[$for(fontfamilyoptions)$$fontfamilyoptions$$sep$,$endfor$]{$fontfamily$} $else$ -- cgit v1.2.3