From ea812658422730db2440c458330f0487d9dc823e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Fri, 19 Feb 2021 16:45:39 +0100 Subject: new slides --- vorlesungen/00_template/Makefile | 26 ++++++++++++++++++++++++++ vorlesungen/00_template/common.tex | 16 ++++++++++++++++ vorlesungen/00_template/handout.tex | 11 +++++++++++ vorlesungen/00_template/presentation.tex | 14 ++++++++++++++ vorlesungen/00_template/slides.tex | 6 ++++++ 5 files changed, 73 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/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..fe6bbb7 --- /dev/null +++ b/vorlesungen/00_template/Makefile @@ -0,0 +1,26 @@ +# +# 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 + +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 + 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/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 From f2454006fa4e2a0b4093507300fab8a29e3b5901 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Mon, 8 Mar 2021 09:40:32 +0100 Subject: final preparation --- vorlesungen/00_template/Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'vorlesungen/00_template') diff --git a/vorlesungen/00_template/Makefile b/vorlesungen/00_template/Makefile index fe6bbb7..14c254d 100644 --- a/vorlesungen/00_template/Makefile +++ b/vorlesungen/00_template/Makefile @@ -15,7 +15,7 @@ MathSem-yyy-xxx.pdf: MathSem-yyy-xxx.tex $(SOURCES) xxx-handout.pdf: xxx-handout.tex $(SOURCES) pdflatex xxx-handout.tex -thumbnail: thumbnail.jpg +thumbnail: thumbnail.jpg # fix1.jpg thumbnail.pdf: MathSem-yyy-xxx.pdf pdfjam --outfile thumbnail.pdf --papersize '{16cm,9cm}' \ @@ -24,3 +24,10 @@ 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 + -- cgit v1.2.1