From 1a8e870f8f4c7e9d402ab7b867699ed999fec7dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Tue, 28 Sep 2021 14:27:37 +0200 Subject: slide infrastructure for MathSem --- vorlesungen/00_template/Makefile | 33 +++++++++++++++++++++++++++++++ vorlesungen/00_template/common.tex | 16 +++++++++++++++ vorlesungen/00_template/handout.tex | 11 +++++++++++ vorlesungen/00_template/mathman2.png | Bin 0 -> 46259 bytes vorlesungen/00_template/presentation.tex | 14 +++++++++++++ vorlesungen/00_template/slides.tex | 6 ++++++ 6 files changed, 80 insertions(+) create mode 100644 vorlesungen/00_template/Makefile create mode 100644 vorlesungen/00_template/common.tex create mode 100644 vorlesungen/00_template/handout.tex create mode 100644 vorlesungen/00_template/mathman2.png create mode 100644 vorlesungen/00_template/presentation.tex create mode 100644 vorlesungen/00_template/slides.tex (limited to 'vorlesungen/00_template') diff --git a/vorlesungen/00_template/Makefile b/vorlesungen/00_template/Makefile new file mode 100644 index 0000000..14c254d --- /dev/null +++ b/vorlesungen/00_template/Makefile @@ -0,0 +1,33 @@ +# +# Makefile -- xxx +# +# (c) 2017 Prof Dr Andreas Müller, Hochschule Rapperswil +# +all: xxx-handout.pdf MathSem-yyy-xxx.pdf + +include ../slides/Makefile.inc + +SOURCES = common.tex slides.tex $(slides) + +MathSem-yyy-xxx.pdf: MathSem-yyy-xxx.tex $(SOURCES) + pdflatex MathSem-yyy-xxx.tex + +xxx-handout.pdf: xxx-handout.tex $(SOURCES) + pdflatex xxx-handout.tex + +thumbnail: thumbnail.jpg # fix1.jpg + +thumbnail.pdf: MathSem-yyy-xxx.pdf + pdfjam --outfile thumbnail.pdf --papersize '{16cm,9cm}' \ + MathSem-yyy-xxx.pdf 1 +thumbnail.jpg: thumbnail.pdf + convert -density 300 thumbnail.pdf \ + -resize 1920x1080 -units PixelsPerInch thumbnail.jpg + +fix1.pdf: MathSem-yyy-xxx.pdf + pdfjam --outfile fix1.pdf --papersize '{16cm,9cm}' \ + MathSem-yyy-xxx.pdf 1 +fix1.jpg: fix1.pdf + convert -density 300 fix1.pdf \ + -resize 1920x1080 -units PixelsPerInch fix1.jpg + diff --git a/vorlesungen/00_template/common.tex b/vorlesungen/00_template/common.tex new file mode 100644 index 0000000..0700acf --- /dev/null +++ b/vorlesungen/00_template/common.tex @@ -0,0 +1,16 @@ +% +% common.tex -- gemeinsame definition +% +% (c) 2017 Prof Dr Andreas Müller, Hochschule Rapperswil +% +\input{../common/packages.tex} +\input{../common/common.tex} +\mode{% +\usetheme[hideothersubsections,hidetitle]{Hannover} +} +\beamertemplatenavigationsymbolsempty +\title[Titel]{Titel} +\author[A.~Müller]{Prof. Dr. Andreas Müller} +\date[]{} +\newboolean{presentation} + diff --git a/vorlesungen/00_template/handout.tex b/vorlesungen/00_template/handout.tex new file mode 100644 index 0000000..6a98c94 --- /dev/null +++ b/vorlesungen/00_template/handout.tex @@ -0,0 +1,11 @@ +% +% xxx-handout.tex -- Handout XXX +% +% (c) 2017 Prof Dr Andreas Müller, Hochschule Rapperswil +% +\documentclass[handout,aspectratio=169]{beamer} +\input{common.tex} +\setboolean{presentation}{false} +\begin{document} +\input{slides.tex} +\end{document} diff --git a/vorlesungen/00_template/mathman2.png b/vorlesungen/00_template/mathman2.png new file mode 100644 index 0000000..70b2059 Binary files /dev/null and b/vorlesungen/00_template/mathman2.png differ diff --git a/vorlesungen/00_template/presentation.tex b/vorlesungen/00_template/presentation.tex new file mode 100644 index 0000000..599bed2 --- /dev/null +++ b/vorlesungen/00_template/presentation.tex @@ -0,0 +1,14 @@ +% +% MathSem-yyy-xxx.tex -- Präsentation +% +% (c) 2017 Prof Dr Andreas Müller, Hochschule Rapperswil +% +\documentclass[aspectratio=169]{beamer} +\input{common.tex} +\setboolean{presentation}{true} +\begin{document} +\begin{frame} +\titlepage +\end{frame} +\input{slides.tex} +\end{document} diff --git a/vorlesungen/00_template/slides.tex b/vorlesungen/00_template/slides.tex new file mode 100644 index 0000000..5678823 --- /dev/null +++ b/vorlesungen/00_template/slides.tex @@ -0,0 +1,6 @@ +% +% slides.tex -- XXX +% +% (c) 2017 Prof Dr Andreas Müller, Hochschule Rapperswil +% + -- cgit v1.2.1