aboutsummaryrefslogtreecommitdiffstats
path: root/examples/schedule_example_mondaysunday.tex
diff options
context:
space:
mode:
Diffstat (limited to 'examples/schedule_example_mondaysunday.tex')
-rw-r--r--examples/schedule_example_mondaysunday.tex58
1 files changed, 58 insertions, 0 deletions
diff --git a/examples/schedule_example_mondaysunday.tex b/examples/schedule_example_mondaysunday.tex
new file mode 100644
index 0000000..21e7f66
--- /dev/null
+++ b/examples/schedule_example_mondaysunday.tex
@@ -0,0 +1,58 @@
+% Example using the weekschedule class with full week (Monday-Sunday)
+\documentclass{weekschedule}
+
+% ============================================
+% Schedule Configuration
+% ============================================
+
+% Title and author
+\scheduletitle{Weekly Schedule - Spring 2026}
+\scheduleauthor{Douglas B. Rumbaugh}
+
+% Time range
+\timefrom{8:00}
+\timeto{18:00}
+
+% Display format
+\twelvehourtime
+
+% Week configuration - show full week starting with Monday
+\weekfullmonday
+
+% ============================================
+% Define Event Classes (name and RGB color)
+% ============================================
+\eventclass{Courses}{173,216,230} % Light blue
+\eventclass{Meetings}{255,218,185} % Peach
+\eventclass{OfficeHours}{144,238,144} % Light green
+\eventclass{Personal}{221,160,221} % Light purple
+
+% ============================================
+% Define Events
+% Usage: \event{Class}{Name}{Day(s)}{Start}{End}
+% ============================================
+
+% Monday events
+\event{Meetings}{CIE Project Meeting}{Monday}{9:00}{9:30}
+\event{Meetings}{Faculty Meeting}{Monday}{10:00}{10:30}
+\event{Personal}{(Out of Office)}{Monday}{14:30}{17:00}
+
+% Tuesday/Thursday events
+\event{Courses}{MATH 220 01}{Tuesday,Thursday}{9:00}{10:30}
+\event{Courses}{CISC 460 01}{Tuesday,Thursday}{11:15}{12:45}
+\event{OfficeHours}{Office Hours}{Tuesday,Thursday}{13:00}{14:30}
+
+% Wednesday events
+\event{Meetings}{Faculty Meeting}{Wednesday}{10:00}{11:00}
+\event{Meetings}{Research Meeting}{Wednesday}{14:30}{15:30}
+
+% Monday/Wednesday/Friday events
+\event{Courses}{CISC 225 01}{Monday,Wednesday,Friday}{11:00}{12:00}
+\event{Courses}{GEND 112 01}{Monday,Wednesday,Friday}{13:30}{14:30}
+
+% ============================================
+% Generate the schedule
+% ============================================
+\begin{document}
+\printschedule
+\end{document}