-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path2023s-compact.tex
82 lines (68 loc) · 1.93 KB
/
2023s-compact.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
% !TeX program = xelatex
\documentclass{article}
\usepackage{fontspec}
\setmainfont[
Mapping=tex-text,Numbers={OldStyle,Proportional},Scale=.96,
BoldFont={MetaPro-Bold},
BoldItalicFont={MetaPro-BoldItalic},
ItalicFont={MetaPro-BookItalic}
]{MetaPro-Book}
\usepackage{uulm-logos}
\usepackage[normalem]{ulem}
\usepackage[margin=1in]{geometry}
\usepackage{tikz}
\usetikzlibrary{calendar,decorations.markings,backgrounds}
\def\pgfcalendarmonthname#1{%
\translate{\ifcase#1%
\or Januar
\or Februar
\or Maerz
\or April
\or Mai
\or Juni
\or Juli
\or August
\or September
\or Oktober
\or November
\or Dezember
\fi}}
% Color Theme
\definecolor{uulm}{RGB}{130,161,180}
\definecolor{uulm-akzent}{rgb}{.663 .635 .553}
\definecolor{uulm-in}{rgb}{.639 .149 .230}
\definecolor{uulm-med}{rgb}{0.4901,0.6039,0.6666}
\definecolor{uulm-mawi}{rgb}{0.3372,0.6667,0.1098}
\definecolor{uulm-nawi}{rgb}{0.7411,0.3764,0.0196}
\pagestyle{empty}
\begin{document}
{\huge Sommersemester 2023}\hfill\vslogo
\vspace{3em}
\tikzstyle{feiertag}=[uulm-in]
\tikzstyle{first}+=[black,font=\bfseries]
\begin{tikzpicture}
\calendar[dates=2023-04-01 to 2023-09-30,%
week list,month label left,month yshift=0,day yshift=2em%
] (2023s)%
if (at most=2023-04-16) [uulm-akzent!75] else [black!80]
if (at least=2023-07-22) [uulm-akzent!75]
%
if (weekend) [uulm-akzent!40]
if (day of month=1) [first]
% Feiertage
if (equals=2023-05-01) [feiertag] % Tag der Arbeit
if (equals=2023-05-18) [feiertag] % Christi Himmelfahrt
if (equals=2023-05-29) [feiertag] % Pfingstmontag
if (equals=2023-06-08) [feiertag] % Fronleichnam
%
;
\coordinate (top) at (2023s-2023-04-02.south east);
\coordinate (bottom) at (2023s-2023-04-02.south east |- 2023s-2023-09-30.south east);
\coordinate (right) at (\linewidth,0);
\draw[decorate,decoration={
markings,%
mark=between positions 0.0 and 1.0 step 2em with {%
\draw[uulm-akzent,dotted] (0pt,0pt) -- (0pt,10.7cm);
}}] (top) -- (bottom) -- ++(0,-1em);
\end{tikzpicture}
\end{document}