From 293c84dfc5ec8511af15d699ccc9140c8b9b3679 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andreas=20M=C3=BCller?= <andreas.mueller@ost.ch>
Date: Wed, 9 Mar 2022 11:22:17 +0100
Subject: add sample slides and presentations

---
 vorlesungen/17_zeta/Makefile            | 33 +++++++++++++++++++++++++++++++++
 vorlesungen/17_zeta/MathSem-17-zeta.tex | 14 ++++++++++++++
 vorlesungen/17_zeta/common.tex          | 16 ++++++++++++++++
 vorlesungen/17_zeta/slides.tex          |  6 ++++++
 vorlesungen/17_zeta/zeta-handout.tex    | 11 +++++++++++
 5 files changed, 80 insertions(+)
 create mode 100644 vorlesungen/17_zeta/Makefile
 create mode 100644 vorlesungen/17_zeta/MathSem-17-zeta.tex
 create mode 100644 vorlesungen/17_zeta/common.tex
 create mode 100644 vorlesungen/17_zeta/slides.tex
 create mode 100644 vorlesungen/17_zeta/zeta-handout.tex

(limited to 'vorlesungen/17_zeta')

diff --git a/vorlesungen/17_zeta/Makefile b/vorlesungen/17_zeta/Makefile
new file mode 100644
index 0000000..ca4da07
--- /dev/null
+++ b/vorlesungen/17_zeta/Makefile
@@ -0,0 +1,33 @@
+#
+# Makefile -- zeta
+#
+# (c) 2017 Prof Dr Andreas Müller, Hochschule Rapperswil
+#
+all:	zeta-handout.pdf MathSem-17-zeta.pdf
+
+include ../slides/Makefile.inc
+
+SOURCES = common.tex slides.tex $(slides)
+
+MathSem-17-zeta.pdf:	MathSem-17-zeta.tex $(SOURCES)
+	pdflatex MathSem-17-zeta.tex
+
+zeta-handout.pdf:	zeta-handout.tex $(SOURCES)
+	pdflatex zeta-handout.tex
+
+thumbnail:	thumbnail.jpg # fix1.jpg
+
+thumbnail.pdf:	MathSem-17-zeta.pdf
+	pdfjam --outfile thumbnail.pdf --papersize '{16cm,9cm}' \
+		MathSem-17-zeta.pdf 1
+thumbnail.jpg:	thumbnail.pdf
+	convert -density 300 thumbnail.pdf \
+                -resize 1920x1080 -units PixelsPerInch thumbnail.jpg
+
+fix1.pdf:	MathSem-17-zeta.pdf
+	pdfjam --outfile fix1.pdf --papersize '{16cm,9cm}' \
+		MathSem-17-zeta.pdf 1
+fix1.jpg:	fix1.pdf
+	convert -density 300 fix1.pdf \
+                -resize 1920x1080 -units PixelsPerInch fix1.jpg
+
diff --git a/vorlesungen/17_zeta/MathSem-17-zeta.tex b/vorlesungen/17_zeta/MathSem-17-zeta.tex
new file mode 100644
index 0000000..aa2d2dc
--- /dev/null
+++ b/vorlesungen/17_zeta/MathSem-17-zeta.tex
@@ -0,0 +1,14 @@
+%
+% MathSem-17-zeta.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/17_zeta/common.tex b/vorlesungen/17_zeta/common.tex
new file mode 100644
index 0000000..a5571fb
--- /dev/null
+++ b/vorlesungen/17_zeta/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<beamer>{%
+\usetheme[hideothersubsections,hidetitle]{Hannover}
+}
+\beamertemplatenavigationsymbolsempty
+\title[$\zeta$]{Riemann $\zeta$-Funktion}
+\author[R.~Unterer]{Raphael Unterer}
+\date[]{3.~Mai 2022}
+\newboolean{presentation}
+
diff --git a/vorlesungen/17_zeta/slides.tex b/vorlesungen/17_zeta/slides.tex
new file mode 100644
index 0000000..88ff0e7
--- /dev/null
+++ b/vorlesungen/17_zeta/slides.tex
@@ -0,0 +1,6 @@
+%
+% slides.tex -- XXX
+%
+% (c) 2017 Prof Dr Andreas Müller, Hochschule Rapperswil
+%
+\folie{zeta/test.tex}
diff --git a/vorlesungen/17_zeta/zeta-handout.tex b/vorlesungen/17_zeta/zeta-handout.tex
new file mode 100644
index 0000000..73d33cd
--- /dev/null
+++ b/vorlesungen/17_zeta/zeta-handout.tex
@@ -0,0 +1,11 @@
+%
+% zeta-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}
-- 
cgit v1.2.1