-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalendar_2.tex
149 lines (120 loc) · 5.34 KB
/
calendar_2.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Weekly Timetable Calendar
% LaTeX Template
% Version 1.2 (19/9/18)
%
% This template has been downloaded from:
% http://www.LaTeXTemplates.com
%
% Original author:
% Evan Sultanik with modifications by
% Vel ([email protected])
%
% License:
% CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/)
%
% Important note:
% This template requires the calendar.sty file to be in the same directory as the
% .tex file. The calendar.sty file provides the necessary structure to create the
% calendar.
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%----------------------------------------------------------------------------------------
% PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
%----------------------------------------------------------------------------------------
\documentclass[10pt, german]{article} % Can also use 11pt for a larger overall font size
\usepackage{calendar} % Use the calendar.sty style
\usepackage[landscape, a4paper, margin=1cm]{geometry} % Page dimensions and margins
\usepackage{palatino} % Use the Palatino font
\begin{document}
\pagestyle{empty} % Disable default headers and footers
\setlength{\parindent}{0pt} % Stop paragraph indentation
\StartingDayNumber=1 % Calendar starting day, default of 1 means Sunday, 2 for Monday, etc
%----------------------------------------------------------------------------------------
% TITLE SECTION
%----------------------------------------------------------------------------------------
\begin{center}
\textsc{\LARGE University Timetable}\\ % Title text
\textsc{\large Semester 1} % Subtitle text
\end{center}
%----------------------------------------------------------------------------------------
\begin{calendar}{\textwidth} % Calendar to be the entire width of the page
%----------------------------------------------------------------------------------------
% FIRST DAY
%----------------------------------------------------------------------------------------
\day{}{
\textbf{9am-5pm} \daysep Work at McDonald's
}
%----------------------------------------------------------------------------------------
% SECOND DAY
%----------------------------------------------------------------------------------------
\day{}{
\textbf{9am-10am} \daysep BIOSCI101 - BLT100 \timesep
\textbf{10am-11am} \daysep BIOSCI 104 - LLT \timesep
%\textbf{11am-12pm} \daysep No Lecture \timesep
\textbf{12pm-1pm} \daysep BIOSCI105 - BLT204 \timesep
%\textbf{1pm-2pm} \daysep No Lecture \timesep
\textbf{2pm-5pm} \daysep BIOSCI101 Laboratory \timesep
%\textbf{3pm-4pm} \daysep BIOSCI101 Laboratory \timesep
%\textbf{4pm-5pm} \daysep BIOSCI101 Laboratory
}
%----------------------------------------------------------------------------------------
% THIRD DAY
%----------------------------------------------------------------------------------------
\day{}{ % Tuesday
\textbf{9am-10am} \daysep BIOSCI101 - BLT100 \timesep
\textbf{10am-11am} \daysep BIOSCI 104 - LLT \timesep
%\textbf{11am-12pm} \daysep No Lecture \timesep
%\textbf{12pm-1pm} \daysep No Lecture \timesep
%\textbf{1pm-2pm} \daysep No Lecture \timesep
\textbf{2pm-3pm} \daysep GEO101 - HSB1 \timesep
%\textbf{3pm-4pm} \daysep No Lecture \timesep
%\textbf{4pm-5pm} \daysep No Lecture
}
%----------------------------------------------------------------------------------------
% FOURTH DAY
%----------------------------------------------------------------------------------------
\day{}{ % Wednesday
%\textbf{9am-10am} \daysep No Lecture \timesep
\textbf{10am-11am} \daysep BIOSCI 104 - LLT \timesep
%\textbf{11am-12pm} \daysep No Lecture \timesep
\textbf{12pm-1pm} \daysep BIOSCI105 - BLT204 \timesep
%\textbf{1pm-2pm} \daysep No Lecture \timesep
\textbf{2pm-3pm} \daysep GEO101 - HSB1 \timesep
%\textbf{3pm-4pm} \daysep No Lecture \timesep
%\textbf{4pm-5pm} \daysep No Lecture
}
%----------------------------------------------------------------------------------------
% FIFTH DAY
%----------------------------------------------------------------------------------------
\day{}{ % Thursday
%\textbf{9am-10am} \daysep No Lecture \timesep
\textbf{10am-11am} \daysep BIOSCI 104 - LLT \timesep
%\textbf{11am-12pm} \daysep No Lecture \timesep
%\textbf{12pm-1pm} \daysep No Lecture \timesep
%\textbf{1pm-2pm} \daysep No Lecture \timesep
\textbf{2pm-3pm} \daysep GEO101 - HSB1 \timesep
%\textbf{3pm-4pm} \daysep No Lecture \timesep
%\textbf{4pm-5pm} \daysep No Lecture
}
%----------------------------------------------------------------------------------------
% SIXTH DAY
%----------------------------------------------------------------------------------------
\day{}{ % Friday
\textbf{9am-10am} \daysep BIOSCI101 - BLT100 \timesep
\textbf{10am-11am} \daysep BIOSCI 104 - LLT \timesep
%\textbf{11am-12pm} \daysep No Lecture \timesep
\textbf{12pm-1pm} \daysep BIOSCI105 - BLT204 \timesep
%\textbf{1pm-2pm} \daysep No Lecture \timesep
%\textbf{2pm-3pm} \daysep No Lecture \timesep
\textbf{3pm-4pm} \daysep GEO101 Tutorial \\ Room A \timesep
%\textbf{4pm-5pm} \daysep No Lecture
}
%----------------------------------------------------------------------------------------
% SEVENTH DAY
%----------------------------------------------------------------------------------------
\day{}{} % Saturday
%----------------------------------------------------------------------------------------
\finishCalendar
\end{calendar}
\end{document}