mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 12:03:31 +01:00
tex.mk, header.tex.tmpl: Add support for BEAMER_HANDOUT_OPTION
Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
c20aa94acf
commit
06e36cd31e
2 changed files with 7 additions and 2 deletions
|
|
@ -14,6 +14,7 @@ AUTHORS ?=
|
||||||
DATE ?= $(shell date +'%Y/%m/%d')
|
DATE ?= $(shell date +'%Y/%m/%d')
|
||||||
#CONFIDENTIAL_REMARK ?= Vertraulich
|
#CONFIDENTIAL_REMARK ?= Vertraulich
|
||||||
BEAMER_HANDOUT ?= false
|
BEAMER_HANDOUT ?= false
|
||||||
|
BEAMER_ASPECTRATIO ?= 169
|
||||||
|
|
||||||
# -- files
|
# -- files
|
||||||
MAIN ?= main
|
MAIN ?= main
|
||||||
|
|
@ -152,7 +153,11 @@ DOCUMENT_CLASS = article
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(BEAMER_HANDOUT),true)
|
ifeq ($(BEAMER_HANDOUT),true)
|
||||||
BEAMER_HANDOUT_OPTION=handout
|
BEAMER_HANDOUT_OPTION += handout
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifneq ($(BEAMER_ASPECTRATIO),)
|
||||||
|
BEAMER_HANDOUT_OPTION += aspectratio=$(BEAMER_ASPECTRATIO)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
define mangle_tmpl
|
define mangle_tmpl
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
% vim: set filetype=tex :
|
% vim: set filetype=tex :
|
||||||
\documentclass[__HANDOUT__,slidestop,usepdftitle=false]{beamer}
|
\documentclass[__HANDOUT__,slidestop,usepdftitle=false,__ASPECTRATIO__]{beamer}
|
||||||
\usepackage[accumulated]{beamerseminar}
|
\usepackage[accumulated]{beamerseminar}
|
||||||
\usepackage{beamertexpower}
|
\usepackage{beamertexpower}
|
||||||
\usepackage{beamerthemeshadow}
|
\usepackage{beamerthemeshadow}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue